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.
2 parents bda957d + 1c0962c commit 4039b8fCopy full SHA for 4039b8f
.github/workflows/main.yml
@@ -251,6 +251,12 @@ jobs:
251
- jobname: linux-leaks
252
cc: gcc
253
pool: ubuntu-latest
254
+ - jobname: linux-asan
255
+ cc: gcc
256
+ pool: ubuntu-latest
257
+ - jobname: linux-ubsan
258
259
260
env:
261
CC: ${{matrix.vector.cc}}
262
CC_PACKAGE: ${{matrix.vector.cc_package}}
ci/lib.sh
@@ -280,6 +280,12 @@ linux-leaks)
280
export GIT_TEST_PASSING_SANITIZE_LEAK=true
281
export GIT_TEST_SANITIZE_LEAK_LOG=true
282
;;
283
+linux-asan)
284
+ export SANITIZE=address
285
+ ;;
286
+linux-ubsan)
287
+ export SANITIZE=undefined
288
289
esac
290
291
MAKEFLAGS="$MAKEFLAGS CC=${CC:-cc}"
0 commit comments