Skip to content

Commit

Permalink
ci.yml: Test on ubuntu-24.04 (#87, thanks @cclauss)
Browse files Browse the repository at this point in the history
* ci.yml: Test on `ubuntu-24.04`
* CLang 11 and 12 must run on ubuntu-22.04
* runs-on: ${{ matrix.os }}
  • Loading branch information
cclauss authored Jun 4, 2024
1 parent f87dbeb commit 00afc28
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
strategy:
fail-fast: false
matrix:
version: [9, 10, 12] # , 14]
version: [9, 10, 12, 14]

runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -49,9 +49,15 @@ jobs:
strategy:
fail-fast: false
matrix:
version: [11, 12, 14] # , 16, 18]
os: [ubuntu-24.04]
version: [14, 16, 18]
include:
- os: ubuntu-22.04
version: 11
- os: ubuntu-22.04
version: 12

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 00afc28

Please sign in to comment.