Skip to content
Snippets Groups Projects
Commit 2da26bfc authored by Lars Bilke's avatar Lars Bilke
Browse files

[Jenkins] Use new syntax for keeping builds.

parent a8deef1c
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env groovy
@Library('jenkins-pipeline@1.0.21') _
@Library('jenkins-pipeline@1.0.22') _
def stage_required = [build: false, data: false, full: false, docker: false]
def build_shared = 'ON'
......@@ -730,8 +730,10 @@ pipeline {
agent { label "master"}
when { buildingTag() }
steps {
keepBuild()
script { currentBuild.displayName = tag }
script {
currentBuild.keepLog(true)
currentBuild.displayName = tag
}
}
}
} // end parallel
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment