[ci] Enable asan and tsan in CI for tests that pass (#3591)

ctest's -E flag skips tests that match a regular expression.
This commit is contained in:
Tyler Veness
2021-09-19 20:03:40 -07:00
committed by GitHub
parent 1ca383b23b
commit 54ca474dba
2 changed files with 16 additions and 10 deletions

View File

@@ -36,10 +36,10 @@ jobs:
run: mkdir build && cd build && cmake ${{ matrix.flags }} ..
- name: build
working-directory: build
run: make -j3
run: cmake --build . -j$(nproc)
- name: test
working-directory: build
run: make test
run: ctest --output-on-failure
build-vcpkg:
name: "Build - Windows"