File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -73,12 +73,18 @@ jobs:
7373 - name : Build the test suite
7474 shell : bash
7575 working-directory : ${{runner.workspace}}/build
76+ env : # Note: clang bug with sanitizers, remove after upgrading
77+ ASAN_OPTIONS : " use_sigaltstack=false"
78+ UBSAN_OPTIONS : " use_sigaltstack=false"
7679 run : cmake --build . --config ${{matrix.config.build_type}} -j 2
7780
7881 - name : Run the test suite
7982 if : ${{matrix.config.valgrind != 'ON'}}
8083 env :
8184 CTEST_OUTPUT_ON_FAILURE : 1
85+ # Note: clang bug with sanitizers, remove after upgrading
86+ ASAN_OPTIONS : " use_sigaltstack=false"
87+ UBSAN_OPTIONS : " use_sigaltstack=false"
8288 working-directory : ${{runner.workspace}}/build
8389 run : ctest -C ${{matrix.config.build_type}}
8490
You can’t perform that action at this time.
0 commit comments