This workaround is directly applied inside Ubuntu GHA images themselves. Link: https://github.com/actions/runner-images/commit/9485052d98ba055be3355565e23630de8f8c4ef8 Signed-off-by: David Marchand <david.march...@redhat.com> --- .github/workflows/build.yml | 7 ------- 1 file changed, 7 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f7d3affbaa..224fa80dcd 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 -- 2.47.0