We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31d46aa commit a351e7cCopy full SHA for a351e7c
.github/workflows/build-test.yml
@@ -18,6 +18,7 @@ jobs:
18
build_type: Debug
19
build_tool_options: -j 4
20
analyzer: off
21
+ sanitizer: address
22
- os: macos-12
23
24
@@ -62,6 +63,7 @@ jobs:
62
63
env:
64
CC: ${{matrix.cc}}
65
ANALYZER: ${{matrix.analyzer}}
66
+ SANITIZER: ${{matrix.sanitizer}}
67
GENERATOR: ${{matrix.generator}}
68
BUILD_TYPE: ${{matrix.build_type}}
69
BUILD_TOOL_OPTIONS: ${{matrix.build_tool_options}}
@@ -76,6 +78,7 @@ jobs:
76
78
-DCMAKE_PREFIX_PATH=$(pwd) \
77
79
-DBUILD_TESTING=on \
80
-DANALYZER=${ANALYZER:-off} \
81
+ -DSANITIZER=${SANITIZER:-off} \
82
${GENERATOR:+-G} ${GENERATOR:+"${GENERATOR}"} ..
83
cmake --build . --config ${BUILD_TYPE:-RelWithDebInfo} -- ${BUILD_TOOL_OPTIONS}
84
- name: 'Run simdzone tests'
0 commit comments