Update CI to PHP 8
timw4mail/HummingBirdAnimeClient/pipeline/head There was a failure building this commit Details
timw4mail/HummingBirdAnimeClient/pipeline/pr-master Build started... Details

This commit is contained in:
Timothy Warren 2021-02-03 09:52:18 -05:00
parent 6b6c37f015
commit bc50ab3e0c
2 changed files with 3 additions and 16 deletions

View File

@ -4,13 +4,12 @@ install:
- composer install --ignore-platform-reqs
php:
- 7.4
- nightly
script:
- mkdir -p build/logs
- php vendor/bin/phpunit -c build
matrix:
allow_failures:
- php: nightly
#matrix:
# allow_failures:
# - php: nightly

12
Jenkinsfile vendored
View File

@ -10,18 +10,6 @@ pipeline {
sh 'php composer.phar install --ignore-platform-reqs'
}
}
stage('PHP 7.4') {
agent {
docker {
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 {