File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -53,13 +53,13 @@ jobs:
5353 sudo update-alternatives --set clang++ /usr/bin/clang++-20
5454 sudo update-alternatives --install /usr/bin/llvm-symbolizer llvm-symbolizer /usr/bin/llvm-symbolizer-20 100
5555 sudo update-alternatives --set llvm-symbolizer /usr/bin/llvm-symbolizer-20
56- if [ "${{ inputs.sanitizer }}" = "TSan" ]; then
57- # Reduce ASLR to avoid TSan crashing
58- sudo sysctl -w vm.mmap_rnd_bits=28
59- fi
6056
6157 - name : Sanitizer option setup
6258 run : |
59+ if [ "${SANITIZER}" = "TSan" ]; then
60+ # Reduce ASLR to avoid TSan crashing
61+ sudo sysctl -w vm.mmap_rnd_bits=28
62+ fi
6363 if [ "${SANITIZER}" = "TSan" ]; then
6464 echo "TSAN_OPTIONS=${SAN_LOG_OPTION} suppressions=${GITHUB_WORKSPACE}/Tools/tsan/suppressions${{
6565 fromJSON(inputs.free-threading)
You can’t perform that action at this time.
0 commit comments