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 17:49:19 -05:00
parent 03505518d6
commit 3841bba923
1 changed files with 9 additions and 7 deletions

16
Jenkinsfile vendored
View File

@ -37,13 +37,15 @@ pipeline {
} }
post { post {
success { success {
sh 'php composer.phar run-script coverage' agent any {
step([ sh 'php composer.phar run-script coverage'
$class: 'CloverPublisher', step([
cloverReportDir: '', $class: 'CloverPublisher',
cloverReportFileName: 'build/logs/clover.xml', cloverReportDir: '',
]) cloverReportFileName: 'build/logs/clover.xml',
junit 'build/logs/junit.xml' ])
junit 'build/logs/junit.xml'
}
} }
} }
} }