From df32b4b6736703f3994210809e19f28e2f8652da Mon Sep 17 00:00:00 2001 From: Alexis Placet Date: Thu, 5 Sep 2024 09:23:48 +0200 Subject: [PATCH] Try --- .github/workflows/linux.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 9178ccc2..7d48c75d 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -74,6 +74,12 @@ jobs: working-directory: build run: cmake --build . --config ${{matrix.config.name}} --target test_sparrow_lib --parallel 8 + - name: fine-tune asan options + # in asan we get an error from std::regex. ignore it. + run: | + echo "ASAN_OPTIONS=log_path=asan_log_:alloc_dealloc_mismatch=0:halt_on_error=0:handle_abort=0:exitcode=0" >> $GITHUB_ENV + + - name: Run tests working-directory: build run: cmake --build . --config ${{matrix.config.name}} --target run_tests_with_junit_report