Skip to content

Commit ebea65c

Browse files
committed
ci: add Ubuntu 24.04 jobs
1 parent 9878741 commit ebea65c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ubuntu.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ on:
99

1010
jobs:
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:
@@ -39,7 +39,9 @@ jobs:
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

0 commit comments

Comments
 (0)