@Library('eo-jenkins-lib@master') import eo.Utils pipeline { agent any stages { stage('Packaging') { steps { script { if (env.JOB_NAME == 'cut-publik-theme' && env.GIT_BRANCH == 'origin/master') { sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder cut-publik-theme' } else if (env.GIT_BRANCH.startsWith('hotfix/')) { sh "sudo -H -u eobuilder /usr/local/bin/eobuilder --branch ${env.GIT_BRANCH} --hotfix cut-publik-theme" } } } } } post { always { script { utils = new Utils() utils.mail_notify(currentBuild, env, 'ci+jenkins-cut-publik-theme@entrouvert.org') } } success { cleanWs() } } }