Skip to content

Commit 05bfab6

Browse files
committedMar 20, 2024
Merge #1507: ci: Add workaround for ASLR bug in sanitizers
a5e8ab2 ci: Add sanitizer env variables to debug output (Tim Ruffing) 84a93de ci: Add workaround for ASLR bug in sanitizers (Tim Ruffing) Pull request description: Fixes #1506. This also adds the sanitizer env variables to our debug output as suggested in the same issue. ACKs for top commit: sipa: utACK a5e8ab2 jonasnick: ACK a5e8ab2 Tree-SHA512: 5162d14eeec01e088c600ed77e21c5ffd4dec23327b7e81b5ecac59b7c535cac97cd7b7b744c767766036dfc6d9152a9933eb326cf4065d56c46e2ee858da662
2 parents 427e86b + a5e8ab2 commit 05bfab6

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
 

‎.github/actions/run-in-docker-action/action.yml

+4
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ runs:
3636
load: true
3737
cache-from: type=gha
3838

39+
- # Workaround for https://github.com/google/sanitizers/issues/1614 .
40+
run: sudo sysctl -w vm.mmap_rnd_bits=28
41+
shell: bash
42+
3943
- # Tell Docker to pass environment variables in `env` into the container.
4044
run: >
4145
docker run \

‎ci/ci.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ print_environment() {
1717
SECP256K1_TEST_ITERS BENCH SECP256K1_BENCH_ITERS CTIMETESTS\
1818
EXAMPLES \
1919
HOST WRAPPER_CMD \
20-
CC CFLAGS CPPFLAGS AR NM
20+
CC CFLAGS CPPFLAGS AR NM \
21+
UBSAN_OPTIONS ASAN_OPTIONS LSAN_OPTIONS
2122
do
2223
eval "isset=\${$var+x}"
2324
if [ -n "$isset" ]; then

0 commit comments

Comments
 (0)