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

pull/36/head
Timothy Warren 2 years ago
parent 2a8e6aa3ed
commit 9d82154b2f

16
Jenkinsfile vendored

@ -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'
}
}

Loading…
Cancel
Save