Skip to content

Commit cfb3f3f

Browse files
committed
Disable sanitizers
Need to fix tests and re-enable later
1 parent 0498ff0 commit cfb3f3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ccpp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Build & Test
1515
run: |
1616
cmake -E remove_directory build
17-
cmake -B build -S . -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="-Werror -O2 -fsanitize=address,undefined"
17+
cmake -B build -S . -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="-Werror -O2"
1818
cmake --build build
1919
cd build
2020
ctest --output-on-failure
@@ -28,7 +28,7 @@ jobs:
2828
- name: Build & Test
2929
run: |
3030
cmake -E remove_directory build
31-
cmake -B build -S . -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="-Werror -O2 -fsanitize=address,undefined"
31+
cmake -B build -S . -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="-Werror -O2"
3232
cmake --build build
3333
cd build
3434
ctest --output-on-failure

0 commit comments

Comments
 (0)