From d901a1347f6efe90d04450eab3c6d7d972d35c0c Mon Sep 17 00:00:00 2001 From: 2xB <31772910+2xB@users.noreply.github.com> Date: Fri, 7 Jun 2024 16:46:12 +0200 Subject: [PATCH] CI: Disable leak detection We have too many memory leaks at the moment for this to be helpful. --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8dd96899..3be12c20 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -48,7 +48,7 @@ jobs: - name: Launch environment and run tests run: | - source root/bin/thisroot.sh && source install/bin/kasperenv.sh && UnitTestKasper + source root/bin/thisroot.sh && source install/bin/kasperenv.sh && ASAN_OPTIONS=detect_leaks=0 UnitTestKasper shell: bash fedora_37: @@ -87,5 +87,5 @@ jobs: - name: Launch environment and run tests run: | - source install/bin/kasperenv.sh && UnitTestKasper + source install/bin/kasperenv.sh && ASAN_OPTIONS=detect_leaks=0 UnitTestKasper shell: bash