From b39f5d8708acbe1a0742026dee8650ebe31df346 Mon Sep 17 00:00:00 2001 From: primakov Date: Thu, 11 Apr 2024 12:45:45 +0300 Subject: [PATCH] build display name --- stats/Jenkinsfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/stats/Jenkinsfile b/stats/Jenkinsfile index 6f1ea66..0098a0a 100644 --- a/stats/Jenkinsfile +++ b/stats/Jenkinsfile @@ -1,9 +1,16 @@ stage('stats') { + def tag = sh(returnStdout: true, script: "git tag --contains").trim() echo 'checking node and npm versions' sh 'node -v' sh 'npm -v' sh 'ls -a' sh 'df -h' sh 'free -m' + if (tag) { + currentBuild.displayName = "#${BUILD_NUMBER}, tag${tag}" + } else { + currentBuild.displayName = "#${BUILD_NUMBER}, branch ${BRANCH}" + } + currentBuild.description = "#${BUILD_NUMBER}, branch ${BRANCH}, tag${tag}" // sh 'vmstat -s' }