File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
ubuntu :
12
- name : Ubuntu ${{ matrix.version }} (${{ matrix.compiler }}${{ matrix.version == 22 .04 && ' with sanitizers' || '' }})
12
+ name : Ubuntu ${{ matrix.version }} (${{ matrix.compiler }}${{ matrix.version == 24 .04 && ' with sanitizers' || '' }})
13
13
strategy :
14
14
fail-fast : false
15
15
matrix :
16
16
compiler : [clang++, g++]
17
- version : [20.04, 22.04]
17
+ version : [20.04, 22.04, 24.04 ]
18
18
19
19
runs-on : ubuntu-${{ matrix.version }}
20
20
env :
39
39
40
40
- name : Build and check
41
41
run : |
42
- if [[ "${{ matrix.version }}" == 22.04 ]]; then
42
+ if [[ "${{ matrix.version }}" == 24.04 ]]; then
43
+ # -Werror causes false positives with sanitizers and modern GCC
44
+ [[ "${{ matrix.compiler }}" == g++ ]] && export CXXFLAGS=
43
45
make distcheck-sanitizers
44
46
else
45
47
make distcheck
You can’t perform that action at this time.
0 commit comments