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