jenkins: only build stretch packages

This commit is contained in:
Frédéric Péters 2019-08-21 09:05:38 +02:00
parent ebf80591d5
commit 90ca1eca1e
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

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