Suppression de la boucle et du découpage de la sortie standard
Cadoles/Jenkins/pipeline/head There was a failure building this commit Details

This commit is contained in:
Benjamin Bohard 2022-02-08 09:18:19 +01:00
parent 4ce857ef7c
commit f16e377911
1 changed files with 22 additions and 25 deletions

View File

@ -10,16 +10,13 @@ def buildPackageWithCPKG(
def result = [:] def result = [:]
// Retrieve commit tags // Retrieve commit tags
def commitTags = sh(script: 'git describe --exact-match --abbrev=0', returnStdout: true).split(' ') def commitTag = sh(script: 'git describe --exact-match --abbrev=0', returnStdout: true)
if (commitTags.length == 0) { if (commitTag == '') {
error 'No build build tags on last commit' error 'No build build tags on last commit'
} }
// For each tags
for (tag in commitTags) {
// Split tag to retrieve context informations // Split tag to retrieve context informations
def tagParts = tag.split('/') def tagParts = commitTag.split('/')
def packageEnv = tagParts[1] def packageEnv = tagParts[1]
def packageDistrib = tagParts[2] def packageDistrib = tagParts[2]
def packageVersion = tagParts[3] def packageVersion = tagParts[3]
@ -34,7 +31,7 @@ def buildPackageWithCPKG(
sh "rm -rf ${destDir}/*" sh "rm -rf ${destDir}/*"
stage("Build ${packageEnv} package (version ${packageVersion}) for ${packageDistrib}") { stage("Build ${packageEnv} package (version ${packageVersion}) for ${packageDistrib}") {
result.put('tag', tag) result.put('tag', commitTag)
result.put('env', packageEnv) result.put('env', packageEnv)
result.put('version', packageVersion) result.put('version', packageVersion)
result.put('distrib', packageDistrib) result.put('distrib', packageDistrib)