We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e149d4 commit 43607f2Copy full SHA for 43607f2
.github/workflows/ci-meson.yml
@@ -9,8 +9,10 @@ on:
9
jobs:
10
build-and-test:
11
strategy:
12
+ fail-fast: false
13
matrix:
14
cpp_compiler: [g++, clang++]
15
+ sanitize: [address ,undefined, thread]
16
17
runs-on: ubuntu-latest
18
@@ -23,10 +25,10 @@ jobs:
23
25
- name: Setup
24
26
env:
27
CXX: ${{ matrix.cpp_compiler }}
- run: meson setup build -Dwerror=true -Dwarning_level=3
28
+ run: meson setup build -Dwerror=true -Dwarning_level=3 -Db_sanitize=${{ matrix.sanitize }}
29
30
- name: Compile
31
run: meson compile -C build
32
33
- name: Test
- run: meson test -C build
34
+ run: meson test -C build --print-errorlogs
0 commit comments