mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
Fix missing libavif-dev in asan nightly
Asan still runs on Ubuntu 20.04, which doesn't contain the libavif-dev package. Closes GH-16049
This commit is contained in:
6
.github/actions/apt-x64/action.yml
vendored
6
.github/actions/apt-x64/action.yml
vendored
@@ -1,4 +1,8 @@
|
||||
name: apt
|
||||
inputs:
|
||||
asan:
|
||||
default: false
|
||||
required: false
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
@@ -39,7 +43,7 @@ runs:
|
||||
libsqlite3-dev \
|
||||
libsqlite3-mod-spatialite \
|
||||
libwebp-dev \
|
||||
libavif-dev \
|
||||
${{ inputs.asan == 'false' && 'libavif-dev' || '' }} \
|
||||
libonig-dev \
|
||||
libcurl4-openssl-dev \
|
||||
libxml2-dev \
|
||||
|
||||
2
.github/actions/configure-x64/action.yml
vendored
2
.github/actions/configure-x64/action.yml
vendored
@@ -28,7 +28,7 @@ runs:
|
||||
--enable-gd \
|
||||
--with-jpeg \
|
||||
--with-webp \
|
||||
--with-avif \
|
||||
${{ inputs.skipSlow == 'false' && '--with-avif' || '' }} \
|
||||
--with-freetype \
|
||||
--with-xpm \
|
||||
--enable-exif \
|
||||
|
||||
1
.github/workflows/nightly.yml
vendored
1
.github/workflows/nightly.yml
vendored
@@ -162,6 +162,7 @@ jobs:
|
||||
${{ matrix.configuration_parameters }}
|
||||
--${{ matrix.debug && 'enable' || 'disable' }}-debug
|
||||
--${{ matrix.zts && 'enable' || 'disable' }}-zts
|
||||
asan: ${{ matrix.asan && 'true' || 'false' }}
|
||||
- name: make
|
||||
run: make -j$(/usr/bin/nproc) >/dev/null
|
||||
- name: make install
|
||||
|
||||
Reference in New Issue
Block a user