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 9cb6791 commit d570f1aCopy full SHA for d570f1a
.github/workflows/meson.yml
@@ -11,6 +11,7 @@ jobs:
11
strategy:
12
matrix:
13
cpp_compiler: [g++, clang++]
14
+ sanitize: ['address,undefined', 'thread', 'memory']
15
16
runs-on: ubuntu-latest
17
@@ -23,7 +24,7 @@ jobs:
23
24
- name: Setup
25
env:
26
CXX: ${{ matrix.cpp_compiler }}
- run: meson setup build -Dwerror=true -Dwarning_level=3
27
+ run: meson setup build -Dwerror=true -Dwarning_level=3 -Db_sanitize=${{ matrix.sanitize }}
28
29
- name: Compile
30
run: meson compile -C build
0 commit comments