ci: make sure to fail CI if asan detects errors, but don't run leak checks for now

previous setting was causing CI to pass even with asan errors
This commit is contained in:
Eric Wasylishen 2022-11-19 16:09:52 -07:00
parent 0c4aab737d
commit f3b3a4de2f
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ else
fi
# not yet free of memory leaks, so don't abort on leak detection
export ASAN_OPTIONS=exitcode=0
export ASAN_OPTIONS=detect_leaks=false
make -j8 VERBOSE=1 || exit 1
cpack || exit 1