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:
parent
3236d4641c
commit
4e14127f65
|
@ -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({
|
||||
|
|
Loading…
Reference in New Issue