Skip to content

Commit 619f1ef

Browse files
committed
ci: switch GHA workflows for GCC + Clang to Ubuntu 24.04 runner
1 parent c3e7812 commit 619f1ef

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/clang.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on: push
44

55
jobs:
66
clang:
7-
runs-on: ubuntu-22.04
7+
runs-on: ubuntu-24.04
88
strategy:
99
fail-fast: false
1010
matrix:
11-
version: [12, 13, 14]
11+
version: [14, 16, 18]
1212
steps:
1313
# Checks-out the repository under $GITHUB_WORKSPACE.
1414
- uses: actions/checkout@v4
@@ -37,7 +37,7 @@ jobs:
3737
cmake -DENABLE_LTO=ON -DENABLE_STATIC_LINKING=ON ../
3838
make -j2
3939
# Only run static build on latest version in the matrix.
40-
if: matrix.version == 14
40+
if: matrix.version == 18
4141
- name: Run tests
4242
run: |
4343
cd "$GITHUB_WORKSPACE/build"

.github/workflows/gcc.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on: push
44

55
jobs:
66
gcc:
7-
runs-on: ubuntu-22.04
7+
runs-on: ubuntu-24.04
88
strategy:
99
fail-fast: false
1010
matrix:
11-
version: [9, 10, 11]
11+
version: [9, 12, 13, 14]
1212
steps:
1313
# Checks-out the repository under $GITHUB_WORKSPACE.
1414
- uses: actions/checkout@v4
@@ -37,7 +37,7 @@ jobs:
3737
cmake -DENABLE_LTO=ON -DENABLE_STATIC_LINKING=ON ../
3838
make -j2
3939
# Only run static build on latest version in the matrix.
40-
if: matrix.version == 11
40+
if: matrix.version == 14
4141
- name: Run tests
4242
run: |
4343
cd "$GITHUB_WORKSPACE/build"

0 commit comments

Comments
 (0)