We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53d49aa commit 34b644cCopy full SHA for 34b644c
1 file changed
.github/workflows/reusable-ubsan.yml
@@ -35,7 +35,7 @@ jobs:
35
sudo ./llvm.sh 20
36
- name: UBSAN option setup
37
run: |
38
- echo "UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1:log_path=${GITHUB_WORKSPACE}/ubsan_log" >> "$GITHUB_ENV"
+ echo "UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1" >> "$GITHUB_ENV"
39
echo "CC=clang" >> "$GITHUB_ENV"
40
echo "CXX=clang++" >> "$GITHUB_ENV"
41
- name: Add ccache to PATH
@@ -52,6 +52,9 @@ jobs:
52
--config-cache
53
--with-undefined-behavior-sanitizer
54
--with-pydebug
55
+ - name: Set up UBSAN log after configuration
56
+ run: |
57
+ echo "UBSAN_OPTIONS=${UBSAN_OPTIONS}:log_path=${GITHUB_WORKSPACE}/ubsan_log" >> "$GITHUB_ENV"
58
- name: Build CPython
59
run: make -j4
60
- name: Display build info
0 commit comments