bidon/Jenkinsfile

45 lines
1.5 KiB
Groovy

@Library('eo-jenkins-lib@master') import eo.Utils
pipeline {
agent any
stages{
stage('unit test'){
steps{
sh 'tox -r -- --junitxml=test_results.xml --cov-report xml --cov=bidon/ tests/'
}
}
stage('packaging'){
steps{
script {
if (env.BRANCH_NAME == 'master') {
sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder -d jessie bidon'
}
}
}
}
}
post {
always {
junit 'test_results.xml'
script {
utils = Utils()
utils.publish_cobertura_report('**/coverage.xml')
// Hack to have the 'jenkins build back to normal' mail sent
if (currentBuild.result == null) {
currentBuild.result = 'SUCCESS'
}
if (env.BRANCH_NAME == 'master') {
step([$class: 'Mailer', notifyEveryUnstableBuild: true,
recipients: "manukaz@gmail.com", sendToIndividuals: true])
} else {
step([$class: 'Mailer',
notifyEveryUnstableBuild: true,
recipients: emailextrecipients([[$class: 'CulpritsRecipientProvider'],
[$class: 'RequesterRecipientProvider']])])
}
}
}
}
}