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