Skip to content

Commit

Permalink
github: workaround CI issue with ASAN
Browse files Browse the repository at this point in the history
  • Loading branch information
mihalicyn committed Mar 18, 2024
1 parent 6239e4b commit 3517755
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ jobs:
- ubuntu-22.04
runs-on: ${{ matrix.os }}
steps:
# TODO(mihalicyn): Remove once the following is fixed:
# https://github.com/actions/runner-images/issues/9491
- name: Reduce ASLR entropy as a temporary workaround
run: |
sudo sysctl -w vm.mmap_rnd_bits=28
- name: Checkout code
uses: actions/checkout@v2

Expand Down Expand Up @@ -63,6 +69,12 @@ jobs:
- ubuntu-22.04
runs-on: ${{ matrix.os }}
steps:
# TODO(mihalicyn): Remove once the following is fixed:
# https://github.com/actions/runner-images/issues/9491
- name: Reduce ASLR entropy as a temporary workaround
run: |
sudo sysctl -w vm.mmap_rnd_bits=28
- name: Checkout code
uses: actions/checkout@v2

Expand Down

0 comments on commit 3517755

Please sign in to comment.