jenkins-lib/src/eo/Utils.groovy

55 lines
1.7 KiB
Groovy
Raw Normal View History

2018-04-25 09:42:39 +02:00
package eo;
2018-04-25 10:23:23 +02:00
def mail_notify(currentBuild, env, email) {
/* Send mail to 'email' if branch is master
2018-04-25 19:33:35 +02:00
else send mail to the author of the last commit
2018-04-25 10:23:23 +02:00
*/
if (currentBuild.result == null) {
// Hack to have the 'jenkins build back to normal' mail sent
currentBuild.result = 'SUCCESS'
}
if (env.BRANCH_NAME == 'master') {
2018-04-26 12:00:08 +02:00
step([
$class: 'Mailer', notifyEveryUnstableBuild: true,
recipients: email, sendToIndividuals: true
])
2018-04-25 10:23:23 +02:00
} else {
2018-04-26 11:48:09 +02:00
step([
$class: 'Mailer', notifyEveryUnstableBuild: true,
2018-04-26 12:00:08 +02:00
recipients: emailextrecipients([
[$class: 'CulpritsRecipientProvider'],
[$class: 'RequesterRecipientProvider']
])
])
2018-04-25 10:23:23 +02:00
}
}
2018-04-25 19:33:35 +02:00
def publish_coverage(report_pattern) {
2018-04-26 12:00:08 +02:00
step([
$class: 'CoberturaPublisher', autoUpdateHealth: false, autoUpdateStability: false,
coberturaReportFile: report_pattern, failUnhealthy: false, failUnstable: false,
maxNumberOfBuilds: 0, onlyStable: false, sourceEncoding: 'ASCII', zoomCoverageChart: false
])
2018-04-25 19:33:35 +02:00
}
2018-04-26 11:48:09 +02:00
def publish_coverage_native(report_pattern) {
publishHTML target : [
allowMissing: false, alwaysLinkToLastBuild: false, keepAll: true, reportDir: 'htmlcov',
reportFiles: report_pattern, reportName: 'Coverage Report (native)',reportTitles: ''
]
}
2018-04-26 12:09:16 +02:00
2018-04-25 19:33:35 +02:00
def publish_pylint(report_pattern) {
2018-04-26 11:48:09 +02:00
warnings canComputeNew: false, canResolveRelativePaths: false, categoriesPattern: '',
defaultEncoding: '', excludePattern: '', healthy: '', includePattern: '',
messagesPattern: '', parserConfigurations: [[parserName: 'PyLint', pattern: report_pattern]],
unHealthy: ''
2018-04-25 19:33:35 +02:00
}
2018-04-25 09:42:39 +02:00
return this