Repository: aurora
Updated Branches:
  refs/heads/master 2cb257b80 -> 0169b8198


Run Jenkins tests without the Gradle daemon

This follows the recommendation of Gradle to only use their daemon when
running in local environments but not in CI environments.

We are seeing spurious build failures from time to time on the shared
Apache build server. Disabling the daemon might help to prevent those.

https://docs.gradle.org/current/userguide/gradle_daemon.html#when_should_i_not_use_the_gradle_daemon

Reviewed at https://reviews.apache.org/r/62832/


Project: http://git-wip-us.apache.org/repos/asf/aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/0169b819
Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/0169b819
Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/0169b819

Branch: refs/heads/master
Commit: 0169b81987604f9fe8fddd937da783d7cd2092f2
Parents: 2cb257b
Author: Stephan Erb <s...@apache.org>
Authored: Sun Oct 8 19:40:53 2017 +0200
Committer: Stephan Erb <s...@apache.org>
Committed: Sun Oct 8 19:40:53 2017 +0200

----------------------------------------------------------------------
 build-support/jenkins/build.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/aurora/blob/0169b819/build-support/jenkins/build.sh
----------------------------------------------------------------------
diff --git a/build-support/jenkins/build.sh b/build-support/jenkins/build.sh
index e54bd2a..f59fe27 100755
--- a/build-support/jenkins/build.sh
+++ b/build-support/jenkins/build.sh
@@ -18,7 +18,7 @@ set -eux
 date
 
 # Run all Java tests
-./gradlew -Pq clean build
+./gradlew --no-daemon -Pq clean build
 
 # Run Python import ordering check
 ./build-support/python/isort-check

Reply via email to