We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35aef8e commit 69901f9Copy full SHA for 69901f9
.github/workflows/push.yml
@@ -72,12 +72,15 @@ jobs:
72
zts: true
73
asan: true
74
name: "LINUX_X64_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}${{ matrix.asan && '_ASAN' || '' }}"
75
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-${{ !matrix.asan && '22' || '20' }}.04
76
container:
77
image: ${{ matrix.asan && 'ubuntu:23.04' || null }}
78
steps:
79
- name: git checkout
80
uses: actions/checkout@v4
81
+ # https://github.com/actions/runner-images/issues/9491#issuecomment-1989718917
82
+ - name: Fix kernel mmap rnd bits
83
+ run: sudo sysctl vm.mmap_rnd_bits=28
84
- name: apt
85
uses: ./.github/actions/apt-x64
86
- name: System info
0 commit comments