add Jenkinsfile

This commit is contained in:
Thomas NOËL 2019-01-08 17:49:32 +01:00
parent 2b25184192
commit 69354387ef
1 changed files with 27 additions and 0 deletions

27
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,27 @@
@Library('eo-jenkins-lib@master') import eo.Utils
pipeline {
agent any
stages {
stage('Packaging') {
steps {
script {
if (env.JOB_NAME == 'atreal-publik-themes' && env.GIT_BRANCH == 'origin/master') {
sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder atreal-publik-themes'
}
}
}
}
}
post {
always {
script {
utils = new Utils()
utils.mail_notify(currentBuild, env, 'admin+jenkins-atreal-publik-themes@entrouvert.com')
}
}
success {
cleanWs()
}
}
}