Add PHP 7.3 test section back
timw4mail/HummingBirdAnimeClient/pipeline/head There was a failure building this commit Details

This commit is contained in:
Timothy Warren 2020-03-17 11:21:27 -04:00
parent 82d77d0f35
commit 40bc7a34e1
1 changed files with 12 additions and 0 deletions

12
Jenkinsfile vendored
View File

@ -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 {