ijuma commented on code in PR #15057:
URL: https://github.com/apache/kafka/pull/15057#discussion_r1434339183
##########
Jenkinsfile:
##########
@@ -21,7 +21,7 @@ def doValidation() {
// Run all the tasks associated with `check` except for `test` - the latter
is executed via `doTest`
sh """
./retry_zinc ./gradlew -PscalaVersion=$SCALA_VERSION clean check -x test \
- --profile --continue -PxmlSpotBugsReport=true -PkeepAliveMode="session"
+ --no-daemon --profile --continue -PxmlSpotBugsReport=true
-PkeepAliveMode="session"
Review Comment:
We can probably remove `keepAliveMode` if we use `no-daemon`:
> keepAliveMode: configures the keep alive mode for the Gradle compilation
daemon - reuse improves start-up time. The values should be one of daemon or
session (the default is daemon). daemon keeps the daemon alive until it's
explicitly stopped while session keeps it alive until the end of the build
session. This currently only affects the Scala compiler, see
https://github.com/gradle/gradle/pull/21034 for a PR that attempts to do the
same for the Java compiler.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]