1
0
Fork 0

add diff id to build name

This commit is contained in:
Mikhail Goncharov 2019-12-11 13:49:50 +01:00
parent a3cb3b11d3
commit e06b9c2dcd

View file

@ -33,7 +33,9 @@ pipeline {
stage("build info"){
steps {
echo "Building diff ${DIFF_ID} with PHID ${PHID}"
currentBuild.description = "diff ${DIFF_ID}"
script {
currentBuild.displayName = "diff ${DIFF_ID}"
}
}
}
stage("git checkout"){