From bbb9dad72ba0591be93ae570c9c8bf8ae21f7138 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Wed, 4 Dec 2019 10:46:26 -0500 Subject: [PATCH] Update Jenkinsfile to use stable PHP --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b4f94d3..f99f3bd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,10 +1,10 @@ pipeline { agent none stages { - stage('PHP 7.4RC6') { + stage('PHP 7.4') { agent { docker { - image 'php:7.4.0RC6-cli-alpine' + image 'php:7.4-cli-alpine' args '-u root --privileged' } } @@ -12,7 +12,7 @@ pipeline { sh 'docker-php-ext-install ffi' sh 'apk add --no-cache php7-phpdbg' sh 'curl -sS https://getcomposer.org/installer | php' - sh 'php composer.phar install --ignore-platform-reqs' + sh 'php composer.phar install' sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never -c phpunit.xml tests' } }