From e62a3edcd19c8e31a2a3948ca5bbc39e92c0aecf Mon Sep 17 00:00:00 2001 From: josecoll Date: Fri, 19 Oct 2018 16:40:06 +0100 Subject: [PATCH] Explicitly disable remote gradle build cache when building locally. (#4095) --- buildCacheSettings.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/buildCacheSettings.gradle b/buildCacheSettings.gradle index fcfc1513bf..b4d0175f6e 100644 --- a/buildCacheSettings.gradle +++ b/buildCacheSettings.gradle @@ -9,6 +9,7 @@ buildCache { enabled = !isCiServer } remote(HttpBuildCache) { + enabled = isCiServer url = gradleBuildCacheURL push = isCiServer }