Jenkinsfile: Show machine and image type in job name

This commit is contained in:
Alexandre Bard 2020-09-12 19:39:33 +02:00
parent 9d5be70994
commit 5a7ac164d3
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -54,7 +54,7 @@ pipeline {
----------------------------------\n"
env.BUILD_VERSION = "${version}"
currentBuild.displayName = "${version}" //replace Bitbake timestamp after building
currentBuild.displayName = "${version}-${MACHINE}-${IMAGE_TYPE}" //replace Bitbake timestamp after building
}
writeFile file: 'VERSION', text: "${PACKAGE_NAME}: ${BUILD_VERSION}"
}