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 2024/03/11 15:13:50 UTC

(beam) branch master updated: Disable remote gradle cache until it is cleaned (#30584)

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 a3ea9ef706c Disable remote gradle cache until it is cleaned (#30584)
a3ea9ef706c is described below

commit a3ea9ef706cf798fc1f6b026dcdf7171434e74d8
Author: Yi Hu <ya...@google.com>
AuthorDate: Mon Mar 11 11:13:43 2024 -0400

    Disable remote gradle cache until it is cleaned (#30584)
    
    * Disable remote gradle cache until it is cleaned
    
    * trigger test
---
 ...ink.json => beam_PostCommit_XVR_PythonUsingJavaSQL_Dataflow.json} | 0
 settings.gradle.kts                                                  | 5 +++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/.github/trigger_files/beam_PostCommit_XVR_Flink.json b/.github/trigger_files/beam_PostCommit_XVR_PythonUsingJavaSQL_Dataflow.json
similarity index 100%
rename from .github/trigger_files/beam_PostCommit_XVR_Flink.json
rename to .github/trigger_files/beam_PostCommit_XVR_PythonUsingJavaSQL_Dataflow.json
diff --git a/settings.gradle.kts b/settings.gradle.kts
index 417fc87baa2..712d230271d 100644
--- a/settings.gradle.kts
+++ b/settings.gradle.kts
@@ -62,8 +62,9 @@ buildCache {
       username = System.getenv("GRADLE_ENTERPRISE_CACHE_USERNAME")
       password = System.getenv("GRADLE_ENTERPRISE_CACHE_PASSWORD")
     }
-    isEnabled = !System.getenv("GRADLE_ENTERPRISE_CACHE_USERNAME").isNullOrBlank()
-    isPush = isCi
+    // TODO(yathu) re-enable when remote gradle cache cleaned up
+    isEnabled = false // !System.getenv("GRADLE_ENTERPRISE_CACHE_USERNAME").isNullOrBlank()
+    isPush = false
   }
 }