We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6c8ea6 commit 4293c8cCopy full SHA for 4293c8c
1 file changed
.github/workflows/ci.yml
@@ -9,12 +9,12 @@ on:
9
10
jobs:
11
ubuntu:
12
- name: Ubuntu ${{ matrix.version }} (${{ matrix.compiler }}${{ matrix.version == 22.04 && ' with sanitizers' || '' }})
+ name: Ubuntu ${{ matrix.version }} (${{ matrix.compiler }}${{ matrix.version == 24.04 && ' with sanitizers' || '' }})
13
strategy:
14
fail-fast: false
15
matrix:
16
compiler: [clang, gcc]
17
- version: [22.04]
+ version: [22.04, 24.04]
18
19
runs-on: ubuntu-${{ matrix.version }}
20
env:
@@ -38,7 +38,7 @@ jobs:
38
39
- name: Build and check
40
run: |
41
- if [[ "${{ matrix.version }}" == 22.04 ]]; then
+ if [[ "${{ matrix.version }}" == 24.04 ]]; then
42
make distcheck-sanitizers
43
else
44
make distcheck
0 commit comments