diff --git a/Jenkinsfile b/Jenkinsfile index f6964da..08ea690 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -21,9 +21,9 @@ pipeline { steps { script { if (env.JOB_NAME == 'gadjo' && env.GIT_BRANCH == 'origin/main') { - sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder -d buster,bullseye gadjo' + sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder -d bullseye gadjo' } else if (env.GIT_BRANCH.startsWith('hotfix/')) { - sh "sudo -H -u eobuilder /usr/local/bin/eobuilder -d buster,bullseye --branch ${env.GIT_BRANCH} --hotfix gadjo" + sh "sudo -H -u eobuilder /usr/local/bin/eobuilder -d bullseye --branch ${env.GIT_BRANCH} --hotfix gadjo" } } }