cloverphp publisher

Capture code coverage reports from PHPUnit, requires the Jenkins Clover
PHP Plugin:
 https://wiki.jenkins-ci.org/display/JENKINS/Clover+PHP+Plugin

Note: whenever the healthy targets are left blank, the v0.3.3 plugin
will fill in default values which then appears in the configuration. I
have ported that in Jenkins Job Builder to ensure clean diff in the Job
Configuration History plugin.

Change-Id: I9010dee62611094840304cdc2e7317b058d6495a
This commit is contained in:
Antoine Musso
2013-10-21 16:36:22 +02:00
committed by Gerrit Code Review
parent ab30ecaa4b
commit 28c5c1c93b
8 changed files with 194 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" ?>
<project>
<publishers>
<org.jenkinsci.plugins.cloverphp.CloverPHPPublisher>
<publishHtmlReport>false</publishHtmlReport>
<xmlLocation>build/clover.xml</xmlLocation>
<disableArchiving>false</disableArchiving>
<healthyTarget>
<methodCoverage>70</methodCoverage>
<statementCoverage>80</statementCoverage>
</healthyTarget>
<unhealthyTarget/>
<failingTarget/>
</org.jenkinsci.plugins.cloverphp.CloverPHPPublisher>
</publishers>
</project>