Make sure to run tests for PHP8
timw4mail/HummingBirdAnimeClient/pipeline/head There was a failure building this commit Details

This commit is contained in:
Timothy Warren 2020-12-11 10:26:24 -05:00
parent 2a8e6aa3ed
commit 9d82154b2f
1 changed files with 14 additions and 2 deletions

16
Jenkinsfile vendored
View File

@ -13,7 +13,19 @@ pipeline {
stage('PHP 7.4') {
agent {
docker {
image 'php:7.4-alpine'
image 'php:7.4-cli-alpine'
args '-u root --privileged'
}
}
steps {
sh 'apk add --no-cache git'
sh 'php ./vendor/bin/phpunit --colors=never'
}
}
stage('PHP 8') {
agent {
docker {
image 'php:8-cli-alpine'
args '-u root --privileged'
}
}
@ -25,7 +37,7 @@ pipeline {
stage('Latest PHP') {
agent {
docker {
image 'php:alpine'
image 'php:cli-alpine'
args '-u root --privileged'
}
}