From 8a8a6146c47d5035cbadd60c4b43a5abceac8ea5 Mon Sep 17 00:00:00 2001 From: Liss Heidrich <31625940+Clueliss@users.noreply.github.com> Date: Mon, 18 Mar 2024 18:06:14 +0100 Subject: [PATCH] disable sanitizers again --- .github/workflows/code_testing.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/code_testing.yaml b/.github/workflows/code_testing.yaml index abc76ce..9f1ecfe 100644 --- a/.github/workflows/code_testing.yaml +++ b/.github/workflows/code_testing.yaml @@ -80,7 +80,7 @@ jobs: key: tests-${{ matrix.config.os }}-${{ matrix.config.compiler }}-conan - name: Configure CMake - run: cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="-fsanitize=address,undefined" -DBUILD_TESTING=On -DBUILD_EXAMPLES=On -DUSE_CONAN=On -G Ninja -B build . + run: cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=On -DBUILD_EXAMPLES=On -DUSE_CONAN=On -G Ninja -B build . env: CC: ${{ steps.install_cc.outputs.cc }} CXX: ${{ steps.install_cc.outputs.cxx }}