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

iox-#2011 Update Ubuntu on CI #2430

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
iox-#2011 Update Ubuntu on CI
elBoberido committed Mar 9, 2025
commit 5904c9880e95bb61d6f2f9598df5b07e5d8cded9
12 changes: 1 addition & 11 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -52,23 +52,13 @@ jobs:
build-test-ubuntu:
# prevent stuck jobs consuming runners for 6 hours
timeout-minutes: 60
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: pre-flight-check
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install iceoryx dependencies and clang-tidy
uses: ./.github/actions/install-iceoryx-deps-and-clang
- name: Setup GCC
uses: egor-tensin/[email protected]
with:
# gcc 8.3 is compiler used in QNX 7.1
version: 8
platform: x64
- name: Setup cmake
uses: jwlawson/[email protected]
with:
cmake-version: '3.16.3' # version used in Ubuntu 20.04 LTS
- run: ./tools/ci/build-test-ubuntu.sh


4 changes: 2 additions & 2 deletions .github/workflows/release_build_publish.yml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
os: [ubuntu-24.04]
steps:
- name: Install iceoryx dependencies
run: |
@@ -56,7 +56,7 @@ jobs:
release:
name: Create Release
needs: build-ubuntu-release
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Download release artifacts
uses: actions/download-artifact@v4
Loading