ci: remove workaround for ASan in Ubuntu GHA images
Checks
Commit Message
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.marchand@redhat.com>
---
.github/workflows/build.yml | 7 -------
1 file changed, 7 deletions(-)
Comments
On Thu, Nov 7, 2024 at 2:15 PM David Marchand <david.marchand@redhat.com> wrote:
>
> 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.marchand@redhat.com>
Applied, thanks.
@@ -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