Generic SAFT implementation #97
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: run address sanitizer | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
Matrix-build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest] | |
python-version: [3.9] # Could add more here, but it just makes the build matrix bigger | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: checkout submodules | |
run: git submodule update --init --recursive | |
- name: mkdir | |
run: mkdir build && cd build | |
- name: cmake config | |
run: cd build && CXX=clang++ cmake .. -DCMAKE_BUILD_TYPE=Asan -DTEQP_ASAN=ON -DTEQP_SNIPPETS=ON -DTEQP_TEQPC=OFF | |
- name: build all Catch tests | |
run: cmake --build build --target catch_tests --config Asan | |
- name: run all the compiled Catch tests with address sanitizer | |
run: cd build && ASAN_OPTIONS=detect_stack_use_after_return=1:verbosity=1 ASAN_SYMBOLIZER_PATH=`brew --prefix`/opt/llvm/bin/llvm-symbolizer ./catch_tests --benchmark-samples 1 | |
# ASAN CLI docs here: https://github.com/google/sanitizers/wiki/AddressSanitizerFlags |