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).
This commit is contained in:
Yoann Rodière 2025-01-02 12:19:43 +01:00
parent 3236d4641c
commit 4e14127f65
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

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