Jenkinsfile: use default distribution target (#41301)

This commit is contained in:
Christophe Siraut 2020-04-24 13:55:38 +02:00
parent a2313a390d
commit 8b8787f89c
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -22,7 +22,7 @@ pipeline {
steps {
script {
if (env.JOB_NAME == 'bijoe' && env.GIT_BRANCH == 'origin/master') {
sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder -d jessie,stretch bijoe'
sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder bijoe'
} else if (env.GIT_BRANCH.startsWith('hotfix/')) {
sh "sudo -H -u eobuilder /usr/local/bin/eobuilder -d stretch --branch ${env.GIT_BRANCH} --hotfix bijoe"
}