Fix the CI build?
timw4mail/HummingBirdAnimeClient/pipeline/head There was a failure building this commit Details

This commit is contained in:
Timothy Warren 2021-02-05 20:21:05 -05:00
parent 86c7812f47
commit eb2f4d95b6
1 changed files with 5 additions and 7 deletions

12
Jenkinsfile vendored
View File

@ -34,11 +34,9 @@ pipeline {
sh 'php ./vendor/bin/phpunit --colors=never' sh 'php ./vendor/bin/phpunit --colors=never'
} }
} }
} stage('Coverage') {
post { agent any
success { steps {
agent any
node {
sh 'php composer.phar run-script coverage' sh 'php composer.phar run-script coverage'
step([ step([
$class: 'CloverPublisher', $class: 'CloverPublisher',
@ -46,7 +44,7 @@ pipeline {
cloverReportFileName: 'build/logs/clover.xml', cloverReportFileName: 'build/logs/clover.xml',
]) ])
junit 'build/logs/junit.xml' junit 'build/logs/junit.xml'
} }
} }
} }
} }