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 0bdbb45 + 58cde2f commit c02bd8fCopy full SHA for c02bd8f
.ci/community-jenkins/Jenkinsfile
@@ -35,7 +35,11 @@ milestone(buildNumber)
35
// back to the PR. The "Details" link at the bottom of the GitHub PR page brings
36
// you to the Jenkins Build page, so we're adding the link back to the GitHub PR
37
// page.
38
-currentBuild.description = "This is a build of <a href=\"${CHANGE_URL}\"}\">Open MPI PR #${CHANGE_ID}</a>"
+if (env.CHANGE_URL) {
39
+ currentBuild.description = "This is a build of <a href=\"${CHANGE_URL}\"}\">Open MPI PR #${CHANGE_ID}</a>"
40
+} else {
41
+ currentBuild.description = "Build of ${BRANCH_NAME}"
42
+}
43
44
check_stages = prepare_check_stages()
45
println("Initialized Pipeline")
0 commit comments