You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by yh...@apache.org on 2023/05/19 14:38:43 UTC

[beam] branch master updated: Enable local build caching for CI builds (#26784)

This is an automated email from the ASF dual-hosted git repository.

yhu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 4a540923398 Enable local build caching for CI builds (#26784)
4a540923398 is described below

commit 4a5409233983a0833bf7014848ad0b04be9bb4e4
Author: Nelson Osacky <no...@gradle.com>
AuthorDate: Fri May 19 16:38:35 2023 +0200

    Enable local build caching for CI builds (#26784)
    
    Before #26351, builds had the local build cache enabled for local development builds as well as CI builds. #26351 inadvertenly disabled the local build cache for CI builds. This re-enables it.
    
    Fixes #26776
---
 settings.gradle.kts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/settings.gradle.kts b/settings.gradle.kts
index f313156addc..cceb5a033a7 100644
--- a/settings.gradle.kts
+++ b/settings.gradle.kts
@@ -47,7 +47,7 @@ gradleEnterprise {
 
 buildCache {
   local {
-    isEnabled = !isCi
+    isEnabled = true
   }
   remote(gradleEnterprise.buildCache) {
     isEnabled = false