From 5ce34200c9ef9682e6056a8bb3abcb68e1616fd4 Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Tue, 17 Mar 2020 11:21:27 -0400 Subject: [PATCH] Add PHP 7.3 test section back --- Jenkinsfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index c94da53f..7fb02a70 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,6 +10,18 @@ pipeline { sh 'php composer.phar install --ignore-platform-reqs' } } + stage('PHP 7.3') { + agent { + docker { + image 'php:7.3-alpine' + args '-u root --privileged' + } + } + steps { + sh 'apk add --no-cache git' + sh 'php ./vendor/bin/phpunit --colors=never' + } + } stage('PHP 7.4') { agent { docker {