Skip to content

Commit ca322eb

Browse files
committed
Fix ubuntu-22.04 runner issue
Suggested-by: Ilya Maximets <[email protected]> Signed-off-by: Patryk Kaminski <[email protected]>
1 parent dd2430c commit ca322eb

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/sanitizers.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ jobs:
3434
apt-get update
3535
apt-get install -y cmake libnuma-dev libjemalloc-dev libtbb-dev libhwloc-dev
3636
37+
# Remove this once https://github.com/actions/runner-images/issues/9491 was fixed
38+
- name: Decrease ASLR entropy due to the issue
39+
run: sysctl vm.mmap_rnd_bits=28
40+
3741
- name: Configure build
3842
run: >
3943
cmake
@@ -80,6 +84,10 @@ jobs:
8084
sudo apt-get update
8185
sudo apt-get install -y clang cmake libhwloc-dev libnuma-dev libjemalloc-dev libtbb-dev
8286
87+
# Remove this once https://github.com/actions/runner-images/issues/9491 was fixed
88+
- name: Decrease ASLR entropy due to the issue
89+
run: sudo sysctl vm.mmap_rnd_bits=28
90+
8391
- name: Configure build
8492
run: >
8593
cmake

0 commit comments

Comments
 (0)