Skip to content

Commit

Permalink
Disable sanitizers
Browse files Browse the repository at this point in the history
Need to fix tests and re-enable later
  • Loading branch information
rigtorp committed Sep 25, 2023
1 parent 0498ff0 commit cfb3f3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Build & Test
run: |
cmake -E remove_directory build
cmake -B build -S . -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="-Werror -O2 -fsanitize=address,undefined"
cmake -B build -S . -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="-Werror -O2"
cmake --build build
cd build
ctest --output-on-failure
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Build & Test
run: |
cmake -E remove_directory build
cmake -B build -S . -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="-Werror -O2 -fsanitize=address,undefined"
cmake -B build -S . -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="-Werror -O2"
cmake --build build
cd build
ctest --output-on-failure

0 comments on commit cfb3f3f

Please sign in to comment.