mirror of
https://github.com/haproxy/haproxy.git
synced 2026-03-22 18:33:28 -04:00
CI: temporarily adjust kernel entropy to work with ASAN/clang
clang runtime (shipped with clang14) is not compatible with recent Ubuntu kernels more details: https://github.com/actions/runner-images/issues/9491
This commit is contained in:
parent
5fe02c33bc
commit
3a0fc8641b
1 changed files with 11 additions and 0 deletions
11
.github/workflows/vtest.yml
vendored
11
.github/workflows/vtest.yml
vendored
|
|
@ -57,6 +57,17 @@ jobs:
|
|||
run: |
|
||||
echo "key=$(echo ${{ matrix.name }} | sha256sum | awk '{print $1}')" >> $GITHUB_OUTPUT
|
||||
|
||||
|
||||
#
|
||||
# temporary hack
|
||||
# should be revisited after https://github.com/actions/runner-images/issues/9491 is resolved
|
||||
#
|
||||
|
||||
- name: Setup enthropy
|
||||
if: ${{ startsWith(matrix.os, 'ubuntu-') }}
|
||||
run: |
|
||||
sudo sysctl vm.mmap_rnd_bits=28
|
||||
|
||||
- name: Cache SSL libs
|
||||
if: ${{ matrix.ssl && matrix.ssl != 'stock' && matrix.ssl != 'BORINGSSL=yes' && matrix.ssl != 'QUICTLS=yes' }}
|
||||
id: cache_ssl
|
||||
|
|
|
|||
Loading…
Reference in a new issue