entrouvert-archive/Jenkinsfile

33 lines
800 B
Groovy

@Library('eo-jenkins-lib@master') import eo.Utils
pipeline {
agent any
stages {
stage('Unit Tests') {
steps {
sh 'echo "no test implemented"'
}
}
stage('Packaging') {
steps {
script {
if (env.JOB_NAME == 'entrouvert-archive' && env.GIT_BRANCH == 'origin/master') {
sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder entrouvert-archive'
}
}
}
}
}
post {
always {
script {
utils = new Utils()
utils.mail_notify(currentBuild, env, 'ci+adminsys@entrouvert.org')
}
}
success {
cleanWs()
}
}
}