summaryrefslogtreecommitdiff
path: root/azure/job.yml
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2019-08-30 10:07:25 +0200
committerNikita Popov <nikita.ppv@gmail.com>2019-08-30 10:07:52 +0200
commit23b163862244f020d88db791cc2f94046aebc711 (patch)
tree14959f9156091748d91ef2ff2915bf05ac6dc1bc /azure/job.yml
parent1f647ab4caf6b095759a65d2c31becc26938c3d8 (diff)
parenta12ebc295cfcbcb48c4a8ad610a2b92321b4bb3b (diff)
downloadphp-git-23b163862244f020d88db791cc2f94046aebc711.tar.gz
Merge branch 'PHP-7.4'
Diffstat (limited to 'azure/job.yml')
-rw-r--r--azure/job.yml59
1 files changed, 3 insertions, 56 deletions
diff --git a/azure/job.yml b/azure/job.yml
index 31c0fecb47..7e8d42013c 100644
--- a/azure/job.yml
+++ b/azure/job.yml
@@ -11,62 +11,9 @@ jobs:
vmImage: 'ubuntu-latest'
steps:
- template: apt.yml
- - script: |
- ./buildconf --force
- ./configure ${{ parameters.configurationParameters }} \
- --enable-option-checking=fatal \
- --prefix=/usr \
- --enable-phpdbg \
- --enable-fpm \
- --with-pdo-mysql=mysqlnd \
- --with-mysqli=mysqlnd \
- --with-pgsql \
- --with-pdo-pgsql \
- --with-pdo-sqlite \
- --enable-intl \
- --without-pear \
- --enable-gd \
- --with-jpeg \
- --with-webp \
- --with-freetype \
- --with-xpm \
- --enable-exif \
- --with-zip \
- --with-zlib \
- --with-zlib-dir=/usr \
- --enable-soap \
- --enable-xmlreader \
- --with-xsl \
- --with-tidy \
- --with-xmlrpc \
- --enable-sysvsem \
- --enable-sysvshm \
- --enable-shmop \
- --enable-pcntl \
- --with-readline \
- --enable-mbstring \
- --with-curl \
- --with-gettext \
- --enable-sockets \
- --with-bz2 \
- --with-openssl \
- --with-gmp \
- --enable-bcmath \
- --enable-calendar \
- --enable-ftp \
- --with-pspell=/usr \
- --with-enchant=/usr \
- --with-kerberos \
- --enable-sysvmsg \
- --with-ffi \
- --enable-zend-test \
- --with-ldap \
- --with-ldap-sasl \
- --with-password-argon2 \
- --enable-werror \
- --with-config-file-path=/etc \
- --with-config-file-scan-dir=/etc/php.d
- displayName: 'Configure Build'
+ - template: configure.yml
+ parameters:
+ configurationParameters: ${{ parameters.configurationParameters }}
- script: make -j$(/usr/bin/nproc) >/dev/null
displayName: 'Make Build'
- script: |