jenkins: don't limit hotfix builds to stretch

This commit is contained in:
Frédéric Péters 2020-09-25 16:36:53 +02:00
parent 62fe9e4fdf
commit f46d1ffd96
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

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