Make sure to run tests for PHP8

This commit is contained in:
Timothy Warren 2020-12-11 10:26:24 -05:00
parent 31ed9d11ab
commit 7e0cbe8b83
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'
}
}