diff --git a/Jenkinsfile b/Jenkinsfile index 73ab1b8..854a370 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,11 @@ pipeline { sh 'curl -sS https://getcomposer.org/installer | php' sh 'php composer.phar install' sh 'phpdbg -dffi.enable=1 -qrr -- ./vendor/bin/phpunit --coverage-text --coverage-clover clover.xml --colors=never -c phpunit.xml tests' - sh 'ls -al clover.xml' + step([ + $class: 'CloverPublisher', + cloverReportDir: 'target/site', + cloverReportFileName: 'clover.xml', + ]) } } }