@Library('eo-jenkins-lib@master') import eo.Utils pipeline { agent any options { disableConcurrentBuilds() } stages { stage('Unit Tests') { steps { sh 'tox -rv' } post { always { mergeJunitResults() } } } stage('Packaging') { steps { script { if (env.JOB_NAME == 'passerelle-reunion-unicite' && env.GIT_BRANCH == 'origin/master') { sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder -d stretch passerelle-reunion-unicite' } else if (env.GIT_BRANCH.startsWith('hotfix/')) { sh "sudo -H -u eobuilder /usr/local/bin/eobuilder -d stretch --branch ${env.GIT_BRANCH} --hotfix passerelle-reunion-unicite" } } } } } post { always { script { utils = new Utils() utils.mail_notify(currentBuild, env, 'ci+jenkins-passerelle-reunion-unicite@entrouvert.org') } } success { cleanWs() } } }