Skip to content

Commit f7f5531

Browse files
show node name
Signed-off-by: Bruce Kropp <bruce.kropp@raytheon.com>
1 parent 7c2bf03 commit f7f5531

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.cicd/Jenkinsfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,17 @@ def generateStage(nodeLabel) {
2323
cleanWs()
2424
checkout scm
2525
script {
26-
sh "STAGE_NAME='${env.STAGE_NAME}' " + 'bash --login "${WORKSPACE}/.cicd/scripts/disk_usage.sh"'
26+
sh "STAGE_NAME='${env.STAGE_NAME}' " + 'bash --login "${WORKSPACE}/.cicd/scripts/disk_usage.sh"'
2727
}
2828
}
2929
}
3030
stage("Build on ${nodeLabel}") {
3131
node(nodeLabel) {
3232
script {
3333
echo "Building on ${nodeLabel}"
34+
currentBuild.displayName = "#${BUILD_NUMBER} ${nodeLabel} <compiler>"
35+
//currentBuild.description = ""
36+
3437
echo 'bash --login "${WORKSPACE}/.cicd/scripts/wm_build.sh"'
3538
sh "STAGE_NAME='${env.STAGE_NAME}' " + 'bash --login "${WORKSPACE}/.cicd/scripts/disk_usage.sh"'
3639
}

0 commit comments

Comments
 (0)