jenkins/eobuilder: remove explicit targetting of stretch

This commit is contained in:
Frédéric Péters 2021-08-16 08:28:34 +02:00
parent 9170e5b50f
commit 36bb6fbd45
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -17,9 +17,9 @@ pipeline {
steps {
script {
if (env.JOB_NAME == 'passerelle-reunion-pastell' && env.GIT_BRANCH == 'origin/main') {
sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder -d stretch passerelle-reunion-pastell'
sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder passerelle-reunion-pastell'
} 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-pastell"
sh "sudo -H -u eobuilder /usr/local/bin/eobuilder --branch ${env.GIT_BRANCH} --hotfix passerelle-reunion-pastell"
}
}
}