File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -44,6 +44,13 @@ inputs:
4444runs :
4545 using : " composite"
4646 steps :
47+ # taken from https://github.com/actions/runner-images/issues/9491#issuecomment-1989718917
48+ - name : Fix kernel mmap rnd bits
49+ shell : bash
50+ # Asan in llvm 14 provided in ubuntu 22.04 is incompatible with
51+ # high-entropy ASLR in much newer kernels that GitHub runners are
52+ # using leading to random crashes: https://reviews.llvm.org/D148280
53+ run : sudo sysctl vm.mmap_rnd_bits=28
4754 - name : Install dependencies
4855 shell : bash
4956 run : |
Original file line number Diff line number Diff line change 77runs :
88 using : " composite"
99 steps :
10+ # taken from https://github.com/actions/runner-images/issues/9491#issuecomment-1989718917
11+ - name : Fix kernel mmap rnd bits
12+ shell : bash
13+ # Asan in llvm 14 provided in ubuntu 22.04 is incompatible with
14+ # high-entropy ASLR in much newer kernels that GitHub runners are
15+ # using leading to random crashes: https://reviews.llvm.org/D148280
16+ run : sudo sysctl vm.mmap_rnd_bits=28
1017 - name : Install Dependencies
1118 shell : bash
1219 run : |
Original file line number Diff line number Diff line change @@ -23,6 +23,13 @@ inputs:
2323runs :
2424 using : " composite"
2525 steps :
26+ # taken from https://github.com/actions/runner-images/issues/9491#issuecomment-1989718917
27+ - name : Fix kernel mmap rnd bits
28+ shell : bash
29+ # Asan in llvm 14 provided in ubuntu 22.04 is incompatible with
30+ # high-entropy ASLR in much newer kernels that GitHub runners are
31+ # using leading to random crashes: https://reviews.llvm.org/D148280
32+ run : sudo sysctl vm.mmap_rnd_bits=28
2633 - name : Install Dependencies
2734 shell : bash
2835 run : |
You can’t perform that action at this time.
0 commit comments