diff --git a/Jenkinsfile b/Jenkinsfile index 136f12d..fe6803b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -31,9 +31,9 @@ PGPORT=`python3 -c 'import struct; import socket; s=socket.socket(); s.setsockop steps { script { if (env.JOB_NAME == 'petale' && env.GIT_BRANCH == 'origin/main') { - sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder petale' + sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder -d buster,bullseye petale' } else if (env.GIT_BRANCH.startsWith('hotfix/')) { - sh "sudo -H -u eobuilder /usr/local/bin/eobuilder --branch ${env.GIT_BRANCH} --hotfix petale" + sh "sudo -H -u eobuilder /usr/local/bin/eobuilder -d buster,bullseye --branch ${env.GIT_BRANCH} --hotfix petale" } } }