From 473191b7088f76f4abca6a264a6deade1a3980cf Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Mon, 8 Apr 2024 08:56:33 +0200 Subject: [PATCH] Revert "Run asan and macOS CI in release mode too" This reverts commit 8ada027f052c03193cc127e7f26d12ec51392440. See https://github.com/fish-shell/fish-shell/commit/8ada027f052c03193cc127e7f26d12ec51392440#commitcomment-140718706 --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 73a45e656..d68f473ab 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -97,7 +97,7 @@ jobs: mkdir build && cd build # Rust's ASAN requires the build system to explicitly pass a --target triple. We read that # value from CMake variable Rust_CARGO_TARGET (shared with corrosion). - cmake .. -DASAN=1 -DRust_CARGO_TARGET=x86_64-unknown-linux-gnu -DCMAKE_BUILD_TYPE=RelWithDebInfo + cmake .. -DASAN=1 -DRust_CARGO_TARGET=x86_64-unknown-linux-gnu -DCMAKE_BUILD_TYPE=Debug - name: make run: | make VERBOSE=1 @@ -162,7 +162,7 @@ jobs: - name: cmake run: | mkdir build && cd build - cmake -DWITH_GETTEXT=NO -DCMAKE_BUILD_TYPE=RelWithDebInfo .. + cmake -DWITH_GETTEXT=NO -DCMAKE_BUILD_TYPE=Debug .. - name: make run: | make VERBOSE=1