Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/actions/linux-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,13 @@ inputs:
runs:
using: "composite"
steps:
# taken from https://github.com/actions/runner-images/issues/9491#issuecomment-1989718917
- name: Fix kernel mmap rnd bits
shell: bash
# Asan in llvm 14 provided in ubuntu 22.04 is incompatible with
# high-entropy ASLR in much newer kernels that GitHub runners are
# using leading to random crashes: https://reviews.llvm.org/D148280
run: sudo sysctl vm.mmap_rnd_bits=28
- name: Install dependencies
shell: bash
run: |
Expand Down
7 changes: 7 additions & 0 deletions .github/actions/linux-run_examples/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ inputs:
runs:
using: "composite"
steps:
# taken from https://github.com/actions/runner-images/issues/9491#issuecomment-1989718917
- name: Fix kernel mmap rnd bits
shell: bash
# Asan in llvm 14 provided in ubuntu 22.04 is incompatible with
# high-entropy ASLR in much newer kernels that GitHub runners are
# using leading to random crashes: https://reviews.llvm.org/D148280
run: sudo sysctl vm.mmap_rnd_bits=28
- name: Install Dependencies
shell: bash
run: |
Expand Down
7 changes: 7 additions & 0 deletions .github/actions/linux-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ inputs:
runs:
using: "composite"
steps:
# taken from https://github.com/actions/runner-images/issues/9491#issuecomment-1989718917
- name: Fix kernel mmap rnd bits
shell: bash
# Asan in llvm 14 provided in ubuntu 22.04 is incompatible with
# high-entropy ASLR in much newer kernels that GitHub runners are
# using leading to random crashes: https://reviews.llvm.org/D148280
run: sudo sysctl vm.mmap_rnd_bits=28
- name: Install Dependencies
shell: bash
run: |
Expand Down