Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tests now that Ubuntu 24.04 is the new default #313

Merged
merged 3 commits into from
Jan 9, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 3 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,7 @@ jobs:
podman build -f ./podmanfile

clang-format-style-check:
# The ubuntu-latest has an old version of clang-format, let's use ubuntu-24.04 which is in Beta
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -229,13 +228,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Stop Mono and XSP
# These occupy port 8084 unnecessarily
run: |
sudo systemctl stop mono-xsp4.service || true
sudo systemctl disable mono-xsp4.service || true
sudo killall mono || true
sudo killall xsp4 || true
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
Expand All @@ -244,7 +236,8 @@ jobs:
- name: Setup dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y docker maven git curl iproute2 wcstools
sudo apt-get install -y podman-docker maven git curl iproute2 wcstools
sudo touch /etc/containers/nodocker
cd test
sh setup-dependencies.sh
- name: Print network environment
Expand Down
Loading