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