File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 99
1010jobs :
1111 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' || '' }})
1313 strategy :
1414 fail-fast : false
1515 matrix :
1616 compiler : [clang++, g++]
17- version : [20.04, 22.04]
17+ version : [20.04, 22.04, 24.04 ]
1818
1919 runs-on : ubuntu-${{ matrix.version }}
2020 env :
3939
4040 - name : Build and check
4141 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=
4345 make distcheck-sanitizers
4446 else
4547 make distcheck
You can’t perform that action at this time.
0 commit comments