File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -297,6 +297,11 @@ jobs:
297297 CMAKE_PARAMS : ${{ matrix.params }}
298298 BUILD_TYPE : debug
299299 LSAN_OPTIONS : ' exitcode=42' # Use a non-standard exit code to ensure LSAN errors are detected
300+ # In Ubuntu 20240310.1.0, the entropy of ASLR has increased (28 -> 32). LLVM 14 in this
301+ # image is not compatible with this increased ASLR entropy. Apparently, memory sanitizer
302+ # depends on LLVM and all CI tests where VTR_ENABLE_SANITIZE is enabled fail. For a temporary
303+ # fix, we manually reduce the entropy. This quick fix should be removed in the future
304+ # when github deploys a more stable Ubuntu image.
300305 run : |
301306 sudo sysctl -w vm.mmap_rnd_bits=28
302307 export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
You can’t perform that action at this time.
0 commit comments