summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index d337630f..331f0108 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -116,6 +116,8 @@ jobs:
with:
submodules: true
- run: sudo apt-get install ninja-build
+ - name: workaround for ASLR+ASAN compatibility # See https://github.com/actions/runner/issues/3207
+ run: sudo sysctl -w vm.mmap_rnd_bits=28
- run: make clang-${{ matrix.type }}-${{ matrix.sanitizer }}
- if: ${{ matrix.sanitizer }} != fuzz
run: make test-clang-${{ matrix.type }}-${{ matrix.sanitizer }}
@@ -134,6 +136,8 @@ jobs:
with:
submodules: true
- run: sudo apt-get install ninja-build
+ - name: workaround for ASLR+ASAN compatibility # See https://github.com/actions/runner/issues/3207
+ run: sudo sysctl -w vm.mmap_rnd_bits=28
- run: make clang-debug-asan
- run: make test-clang-debug-asan