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'
}
}
}
post {
success {
agent any
node {
stage('Coverage') {
agent any
steps {
sh 'php composer.phar run-script coverage'
step([
$class: 'CloverPublisher',
@ -46,7 +44,7 @@ pipeline {
cloverReportFileName: 'build/logs/clover.xml',
])
junit 'build/logs/junit.xml'
}
}
}
}
}
}