Skip to content

Commit f367ac8

Browse files
committed
CI: fix sanitizer issues with Clang
1 parent 0e5e14d commit f367ac8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/build-ubuntu.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)