You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: releng/promote-a-build.Jenkinsfile
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,25 @@ pipeline {
17
17
stages {
18
18
stage('Upload') {
19
19
steps {
20
+
script {
21
+
def jobName = "$CDT_REPO/job/$CDT_BRANCH"
22
+
def description = "Promoted as $MILESTONE to <a href='https://download.eclipse.org/tools/cdt/$RELEASE_OR_BUILD/$MINOR_VERSION/$MILESTONE'>download.eclipse.org/tools/cdt/$RELEASE_OR_BUILD/$MINOR_VERSION/$MILESTONE</a>"
23
+
if (params.DRY_RUN) {
24
+
description = "Dry Run: $description"
25
+
}
26
+
27
+
// TODO: Can we get permission from EF IT to use Jenkins.instance.getItemByFullName
0 commit comments