Skip to content

Commit 00afc28

Browse files
authored
ci.yml: Test on ubuntu-24.04 (#87, thanks @cclauss)
* ci.yml: Test on `ubuntu-24.04` * CLang 11 and 12 must run on ubuntu-22.04 * runs-on: ${{ matrix.os }}
1 parent f87dbeb commit 00afc28

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/ci.yml

+10-4
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
version: [9, 10, 12] # , 14]
20+
version: [9, 10, 12, 14]
2121

22-
runs-on: ubuntu-latest
22+
runs-on: ubuntu-24.04
2323

2424
steps:
2525
- uses: actions/checkout@v4
@@ -49,9 +49,15 @@ jobs:
4949
strategy:
5050
fail-fast: false
5151
matrix:
52-
version: [11, 12, 14] # , 16, 18]
52+
os: [ubuntu-24.04]
53+
version: [14, 16, 18]
54+
include:
55+
- os: ubuntu-22.04
56+
version: 11
57+
- os: ubuntu-22.04
58+
version: 12
5359

54-
runs-on: ubuntu-latest
60+
runs-on: ${{ matrix.os }}
5561

5662
steps:
5763
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)