jenkins: build for all default dists

This commit is contained in:
Frédéric Péters 2020-06-12 13:48:30 +02:00
parent 8db7d62146
commit b3b5787ed5
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -20,9 +20,9 @@ pipeline {
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'
sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder 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"
sh "sudo -H -u eobuilder /usr/local/bin/eobuilder --branch ${env.GIT_BRANCH} --hotfix passerelle-reunion-unicite"
}
}
}