ci: don't abort on LeakSanitizer errors

This commit is contained in:
Eric Wasylishen 2022-01-16 12:45:53 -07:00
parent 99c1070b5d
commit 67380cb330
1 changed files with 4 additions and 0 deletions

View File

@ -26,6 +26,10 @@ if [ "$USE_ASAN" == "YES" ]; then
else
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="$EMBREE_CMAKE_DIR;$TBB_CMAKE_DIR"
fi
# not yet free of memory leaks, so don't abort on leak detection
export ASAN_OPTIONS=exitcode=0
make -j8 VERBOSE=1 || exit 1
make -j8 VERBOSE=1 testlight || exit 1
make -j8 VERBOSE=1 testqbsp || exit 1