ci: build deb package for bookworm (#78968)
gitea/authentic2-wallonie-connect/pipeline/head This commit looks good Details

This commit is contained in:
Frédéric Péters 2023-06-23 17:11:10 +02:00
parent 615127a365
commit 9ca7caef81
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -39,9 +39,9 @@ PGPORT=`python3 -c 'import struct; import socket; s=socket.socket(); s.setsockop
'''
).trim()
if (env.GIT_BRANCH == 'main' || env.GIT_BRANCH == 'origin/main') {
sh "sudo -H -u eobuilder /usr/local/bin/eobuilder -d buster,bullseye ${SHORT_JOB_NAME}"
sh "sudo -H -u eobuilder /usr/local/bin/eobuilder -d bullseye,bookworm ${SHORT_JOB_NAME}"
} else if (env.GIT_BRANCH.startsWith('hotfix/')) {
sh "sudo -H -u eobuilder /usr/local/bin/eobuilder -d buster,bullseye --branch ${env.GIT_BRANCH} --hotfix ${SHORT_JOB_NAME}"
sh "sudo -H -u eobuilder /usr/local/bin/eobuilder -d bullseye,bookworm --branch ${env.GIT_BRANCH} --hotfix ${SHORT_JOB_NAME}"
}
}
}