From 5744e912341ee26a0dd5b9ec28b16b8a4e45d1bc Mon Sep 17 00:00:00 2001 From: David Marchand Date: Thu, 7 Nov 2024 14:15:06 +0100 Subject: [PATCH] ci: remove workaround for ASan in Ubuntu GHA images This workaround is directly applied inside Ubuntu GHA images themselves. Link: https://github.com/actions/runner-images/commit/9485052d98ba Signed-off-by: David Marchand --- .github/workflows/build.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 067862d96a..a6436c2c46 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -139,13 +139,6 @@ jobs: .ci/linux-setup.sh # Workaround on $HOME permissions as EAL checks them for plugin loading chmod o-w $HOME - - name: Reduce ASLR entropy - if: env.ASAN == 'true' - # ASan in llvm 14 provided in ubuntu-22.04 is incompatible with - # high-entropy ASLR configured in much newer kernels that GitHub - # runners are using leading to random crashes: - # https://github.com/actions/runner-images/issues/9491 - run: sudo sysctl -w vm.mmap_rnd_bits=28 - name: Build and test run: .ci/linux-build.sh - name: Upload logs on failure