Attempt to log unit test output
Gitea - aviat/banker/pipeline/head There was a failure building this commit Details

This commit is contained in:
Timothy Warren 2021-02-05 16:40:15 -05:00
parent 354912a6c9
commit ca37e716fd
1 changed files with 4 additions and 1 deletions

5
Jenkinsfile vendored
View File

@ -38,7 +38,9 @@ pipeline {
} }
} }
} }
stage("Coverage") { }
post {
success {
steps { steps {
sh 'php composer.phar run-script coverage' sh 'php composer.phar run-script coverage'
step([ step([
@ -46,6 +48,7 @@ pipeline {
cloverReportDir: '', cloverReportDir: '',
cloverReportFileName: 'build/logs/clover.xml', cloverReportFileName: 'build/logs/clover.xml',
]) ])
junit 'build/logs/junit.xml'
} }
} }
} }