jjb [dsl]: set buildname with parameters values

Change-Id: Ia2532c6fa8634bb5f707506365090ca42574c64a
master
Victor Seva 3 weeks ago
parent 322cf36caf
commit d560c622d5

@ -1,6 +1,11 @@
pipeline {
agent { label "slave:${distribution}" }
stages {
stage("Initialization") {
steps {
buildName "#${BUILD_NUMBER} ${distribution}:${architecture}"
}
}
stage('clean workspace') {
steps {
deleteDir()

@ -1,6 +1,11 @@
pipeline {
agent { label "slave:${distribution}" }
stages {
stage("Initialization") {
steps {
buildName "#${BUILD_NUMBER} ${distribution}:${architecture}"
}
}
stage('copy artifacts') {
steps {
deleteDir()

@ -1,6 +1,11 @@
pipeline {
agent { label 'built-in' }
stages {
stage("Initialization") {
steps {
buildName "#${BUILD_NUMBER} ${distribution}:${architecture}"
}
}
stage('copy artifacts') {
steps {
deleteDir()

@ -1,6 +1,11 @@
pipeline {
agent { label "slave:${distribution}" }
stages {
stage("Initialization") {
steps {
buildName "#${BUILD_NUMBER} ${distribution}"
}
}
stage('clean workspace') {
steps {
sh 'rm -f ./* || true'

Loading…
Cancel
Save