From 10e0be15dcbc29d9d17836a256e14229245bf9f1 Mon Sep 17 00:00:00 2001 From: Agate Date: Mon, 20 Feb 2023 14:56:10 +0100 Subject: [PATCH] Prepare Jenkinsfile for Gitea migration (#74572) --- Jenkinsfile | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 04e62ff..d67bcf0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,8 +30,18 @@ PGPORT=`python3 -c 'import struct; import socket; s=socket.socket(); s.setsockop stage('Packaging') { steps { script { - if (env.JOB_NAME == 'authentic2-wallonie-connect') { - sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder -d buster,bullseye authentic2-wallonie-connect' + env.SHORT_JOB_NAME=sh( + returnStdout: true, + // given JOB_NAME=gitea/project/PR-46, returns project + // given JOB_NAME=project/main, returns project + script: ''' + echo "${JOB_NAME}" | sed "s/gitea\\///" | awk -F/ '{print $1}' + ''' + ).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}" + } 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}" } } }