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 77810d1bf9c Disable gradle cache for spark job server shadowjar 
(#33010)
77810d1bf9c is described below

commit 77810d1bf9cff9f8b83746ac7c4f6644ae462517
Author: Yi Hu <[email protected]>
AuthorDate: Mon Nov 4 15:30:27 2024 -0500

    Disable gradle cache for spark job server shadowjar (#33010)
---
 .github/trigger_files/beam_PostCommit_Python.json | 2 +-
 runners/spark/job-server/spark_job_server.gradle  | 4 ++++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/.github/trigger_files/beam_PostCommit_Python.json 
b/.github/trigger_files/beam_PostCommit_Python.json
index 30ee463ad4e..1eb60f6e495 100644
--- a/.github/trigger_files/beam_PostCommit_Python.json
+++ b/.github/trigger_files/beam_PostCommit_Python.json
@@ -1,5 +1,5 @@
 {
   "comment": "Modify this file in a trivial way to cause this test suite to 
run.",
-  "modification": 2
+  "modification": 3
 }
 
diff --git a/runners/spark/job-server/spark_job_server.gradle 
b/runners/spark/job-server/spark_job_server.gradle
index 5ed5f4277bf..90109598ed6 100644
--- a/runners/spark/job-server/spark_job_server.gradle
+++ b/runners/spark/job-server/spark_job_server.gradle
@@ -301,3 +301,7 @@ createCrossLanguageValidatesRunnerTask(
     "--endpoint localhost:${jobPort}",
   ],
 )
+
+shadowJar {
+  outputs.upToDateWhen { false }
+}

Reply via email to