Fixes #1506.
This also adds the sanitizer env variables to our debug output as suggested in the same issue.
Fixes #1506.
This also adds the sanitizer env variables to our debug output as suggested in the same issue.
35@@ -36,6 +36,9 @@ runs:
36 load: true
37 cache-from: type=gha
38
39+ - # Workaround for https://github.com/google/sanitizers/issues/1614 .
40+ run: sysctl -w vm.mmap_rnd_bits=28
0The template is not valid. /home/runner/work/secp256k1/secp256k1/./.github/actions/run-in-docker-action/action.yml (Line: 40, Col: 7): Required property is missing: shell
Yes, it is because of sysctl: permission denied on key "vm.mmap_rnd_bits", ignoring
See https://github.com/bitcoin-core/secp256k1/actions/runs/8347067930/job/22845907812?pr=1507#step:3:587
Fixes #1506.
sudo
should help…