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