Skip to content

Commit 697d1a1

Browse files
committed
Fix ASan build
See actions/runner-images#9491 (comment) The mentioned workaround doesn't work for us because we run ASan inside Docker. Instead, we switch to ubuntu-20.04 as the host. The docker setup itself remains the same. Closes GH-13757
1 parent 50fe64c commit 697d1a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
zts: true
7373
asan: true
7474
name: "LINUX_X64_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}${{ matrix.asan && '_ASAN' || '' }}"
75-
runs-on: ubuntu-22.04
75+
runs-on: ubuntu-${{ !matrix.asan && '22' || '20' }}.04
7676
container:
7777
image: ${{ matrix.asan && 'ubuntu:23.04' || null }}
7878
steps:

0 commit comments

Comments
 (0)