diff --git a/Jenkinsfile b/Jenkinsfile index ba2a5aa..73f0f0e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -20,9 +20,9 @@ pipeline { steps { script { if (env.JOB_NAME == 'combo-plugin-gnm' && env.GIT_BRANCH == 'origin/main') { - sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder combo-plugin-gnm' + sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder -d buster,bullseye combo-plugin-gnm' } else if (env.GIT_BRANCH.startsWith('hotfix/')) { - sh "sudo -H -u eobuilder /usr/local/bin/eobuilder --branch ${env.GIT_BRANCH} --hotfix combo-plugin-gnm" + sh "sudo -H -u eobuilder /usr/local/bin/eobuilder -d buster,bullseye --branch ${env.GIT_BRANCH} --hotfix combo-plugin-gnm" } } }