diff options
author | Joe Orton <jorton@apache.org> | 2024-03-18 17:40:37 +0100 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2024-03-18 17:40:37 +0100 |
commit | d824ef33806ef390f226f7540458509212980277 (patch) | |
tree | c35e39a9845429866e895ebe68bce0073f68de2b /.github | |
parent | Reserve two lognos. [skip ci] (diff) | |
download | apache2-d824ef33806ef390f226f7540458509212980277.tar.xz apache2-d824ef33806ef390f226f7540458509212980277.zip |
CI: Try working around recent ASAN failures.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916396 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/linux.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index f98c9ebc39..0edc1504bf 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -305,6 +305,10 @@ jobs: run: | echo "${{ matrix.env }}" >> $GITHUB_ENV echo JOBID=`echo "${{ matrix.notest-cflags }} ${{ matrix.env }} ${{ matrix.config }}'"| md5sum - | sed 's/ .*//'` >> $GITHUB_ENV + # https://github.com/actions/runner-images/issues/9491#issuecomment-1989718917 + - name: Workaround ASAN issue in Ubuntu 22.04 + run: sudo sysctl vm.mmap_rnd_bits=28 + if: env.TEST_ASAN == 1 - name: apt refresh run: sudo apt-get -o Acquire::Retries=5 update - name: Install prerequisites |