We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c7aedc commit 82bd9f3Copy full SHA for 82bd9f3
.github/workflows/ubuntu.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++, g++]
17
- version: [20.04, 22.04]
+ version: [20.04, 22.04, 24.04]
18
19
runs-on: ubuntu-${{ matrix.version }}
20
env:
@@ -39,7 +39,7 @@ jobs:
39
40
- name: Build and check
41
run: |
42
- if [[ "${{ matrix.version }}" == 22.04 ]]; then
+ if [[ "${{ matrix.version }}" == 24.04 ]]; then
43
make distcheck-sanitizers
44
else
45
make distcheck
0 commit comments