We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6fd18e5 + 4e40776 commit 05edb2bCopy full SHA for 05edb2b
.ci/community-jenkins/Jenkinsfile
@@ -34,7 +34,11 @@ milestone(buildNumber)
34
// back to the PR. The "Details" link at the bottom of the GitHub PR page brings
35
// you to the Jenkins Build page, so we're adding the link back to the GitHub PR
36
// page.
37
-currentBuild.description = "This is a build of <a href=\"${CHANGE_URL}\"}\">Open MPI PR #${CHANGE_ID}</a>"
+if (env.CHANGE_URL) {
38
+ currentBuild.description = "This is a build of <a href=\"${CHANGE_URL}\"}\">Open MPI PR #${CHANGE_ID}</a>"
39
+} else {
40
+ currentBuild.description = "Build of ${BRANCH_NAME}"
41
+}
42
43
check_stages = prepare_check_stages()
44
println("Initialized Pipeline")
0 commit comments