Merge branch 'PHP-8.3'

* PHP-8.3:
  Fix ASan build
This commit is contained in:
Ilija Tovilo 2024-03-19 17:17:21 +01:00
commit 25a8f155f2
No known key found for this signature in database
GPG Key ID: A4F5D403F118200A

View File

@ -80,7 +80,9 @@ jobs:
zts: true
asan: true
name: "LINUX_X64_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}${{ matrix.asan && '_ASAN' || '' }}"
runs-on: ubuntu-22.04
runs-on: ubuntu-${{ !matrix.asan && '22' || '20' }}.04
container:
image: ${{ matrix.asan && 'ubuntu:23.04' || null }}
steps:
- name: git checkout
uses: actions/checkout@v4