From 992bf52c4dfdb064d12875e4a72c8a96a8f323ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 22 Dec 2022 17:22:31 +0100 Subject: [PATCH] ci: only build package for bullseye (#72729) --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" } } }