From f6c66cf343caa5e62d4926a1debfed497219943f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Wed, 6 Jul 2022 12:54:53 +0200 Subject: [PATCH] ci: build for both buster and bullseye (#67061) --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" } } }