Prepare Jenkinsfile for Gitea migration (#74572)
gitea/authentic2-auth-kerberos/pipeline/head Something is wrong with the build of this commit Details

This commit is contained in:
Agate 2023-02-20 14:55:11 +01:00
parent e6ba6f00df
commit ac984bf657
1 changed files with 12 additions and 2 deletions

14
Jenkinsfile vendored
View File

@ -38,8 +38,18 @@ PGPORT=`python3 -c 'import struct; import socket; s=socket.socket(); s.setsockop
stage('Packaging') {
steps {
script {
if (env.JOB_NAME == 'authentic2-auth-kerberos' && (!env.GIT_BRANCH || env.GIT_BRANCH != 'origin/main')) {
sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder authentic2-auth-kerberos'
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 bullseye ${SHORT_JOB_NAME}"
} else if (env.GIT_BRANCH.startsWith('hotfix/')) {
sh "sudo -H -u eobuilder /usr/local/bin/eobuilder -d bullseye --branch ${env.GIT_BRANCH} --hotfix ${SHORT_JOB_NAME}"
}
}
}