Jenkinsfile: build hotfixes for all debian versions (#47046)

This commit is contained in:
Thomas NOËL 2020-09-25 16:35:11 +02:00
parent 6406ad803f
commit b8f36d5485
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

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