Skip to content

Commit 4e14127

Browse files
committed
Produce develocity reports on all Jenkins CI runs for PRs
We were incorrectly skipping these reports for runs that didn't have a specific CI node set (like JDK version runs for PRs to the 6.6 branch).
1 parent 3236d46 commit 4e14127

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ void ciBuild(buildEnv, String args) {
249249
}
250250
}
251251
}
252-
else if ( buildEnv.node && buildEnv.node != 's390x' ) { // We couldn't get the code below to work on s390x for some reason.
252+
else if ( buildEnv.node != 's390x' ) { // We couldn't get the code below to work on s390x for some reason.
253253
// Pull request: we can't pass credentials to the build, since we'd be exposing secrets to e.g. tests.
254254
// We do the build first, then publish the build scan separately.
255255
tryFinally({

0 commit comments

Comments
 (0)