mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
Merge branch 'PHP-7.4'
* PHP-7.4: Enable option checking on CI
This commit is contained in:
commit
4fb595d8b7
5 changed files with 7 additions and 2 deletions
|
@ -15,6 +15,7 @@ jobs:
|
|||
export LDFLAGS=-L/usr/lib/i386-linux-gnu
|
||||
export PKG_CONFIG=/usr/bin/i686-linux-gnu-pkg-config
|
||||
./configure ${{ parameters.configurationParameters }} \
|
||||
--enable-option-checking=fatal \
|
||||
--prefix=/usr \
|
||||
--enable-phpdbg \
|
||||
--enable-fpm \
|
||||
|
|
|
@ -14,6 +14,7 @@ jobs:
|
|||
- script: |
|
||||
./buildconf --force
|
||||
./configure ${{ parameters.configurationParameters }} \
|
||||
--enable-option-checking=fatal \
|
||||
--prefix=/usr \
|
||||
--enable-phpdbg \
|
||||
--enable-fpm \
|
||||
|
|
|
@ -19,6 +19,7 @@ jobs:
|
|||
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/local/opt/icu4c/lib/pkgconfig"
|
||||
./buildconf --force
|
||||
./configure ${{ parameters.configurationParameters }} \
|
||||
--enable-option-checking=fatal \
|
||||
--prefix=/usr/local \
|
||||
--disable-phpdbg \
|
||||
--enable-fpm \
|
||||
|
|
|
@ -20,6 +20,7 @@ jobs:
|
|||
# msan requires all used libraries to be instrumented,
|
||||
# so we should avoiding linking against anything but libc here
|
||||
./configure ${{ parameters.configurationParameters }} \
|
||||
--enable-option-checking=fatal \
|
||||
--prefix=/usr \
|
||||
--without-sqlite3 \
|
||||
--without-pdo-sqlite \
|
||||
|
|
|
@ -5,7 +5,7 @@ else
|
|||
TS="";
|
||||
fi
|
||||
if [[ "$ENABLE_DEBUG" == 1 ]]; then
|
||||
DEBUG="--enable-debug --without-pcre-valgrind";
|
||||
DEBUG="--enable-debug";
|
||||
else
|
||||
DEBUG="";
|
||||
fi
|
||||
|
@ -27,6 +27,7 @@ MAKE_JOBS=${MAKE_JOBS:-2}
|
|||
|
||||
./buildconf --force
|
||||
./configure \
|
||||
--enable-option-checking=fatal \
|
||||
--prefix="$HOME"/php-install \
|
||||
$CONFIG_QUIET \
|
||||
$DEBUG \
|
||||
|
@ -46,7 +47,7 @@ $TS \
|
|||
--with-freetype \
|
||||
--with-xpm \
|
||||
--enable-exif \
|
||||
--enable-zip \
|
||||
--with-zip \
|
||||
--with-zlib \
|
||||
--with-zlib-dir=/usr \
|
||||
--enable-soap \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue