Utils module

This commit is contained in:
Emmanuel Cazenave 2018-04-25 09:42:39 +02:00
commit 4e3101748c
1 changed files with 10 additions and 0 deletions

10
src/eo/Utils.groovy Normal file
View File

@ -0,0 +1,10 @@
package eo;
def publish_cobertura_report(report_pattern) {
step([$class: 'CoberturaPublisher', autoUpdateHealth: false, autoUpdateStability: false,
coberturaReportFile: report_pattern, failUnhealthy: false, failUnstable: false,
maxNumberOfBuilds: 0, onlyStable: false, sourceEncoding: 'ASCII', zoomCoverageChart: false])
}
return this