bidon/Jenkinsfile

33 lines
928 B
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-report html --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 = new Utils()
utils.publish_coverage('coverage.xml')
utils.publish_coverage_native('coverage.html')
utils.mail_notify(currentBuild, env, 'admin+jenkins-bidon@entrouvert.com')
}
}
}
}