This is an automated email from the ASF dual-hosted git repository.
Abacn 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 33dc11cdba4 [CI] Restore Java 17 in the Spark Versions PreCommit so
the Spark 4 module runs (#40093)
33dc11cdba4 is described below
commit 33dc11cdba4cbb2569edd57d2620c8ce16e78f10
Author: Tobias Kaymak <[email protected]>
AuthorDate: Thu Sep 10 15:42:18 2026 +0200
[CI] Restore Java 17 in the Spark Versions PreCommit so the Spark 4 module
runs (#40093)
#39205 replaced the two version Java setup with Java 11 only. The job still
passes -Pjava17Home=$JAVA_HOME_17_X64, which is empty without the second
JDK, and the build plugin disables every task of runners/spark/4 when its
JDK is missing. Since then :runners:spark:4:build has been SKIPPED in every
run and the module's tests have not executed in CI.
---
.github/workflows/beam_PreCommit_Java_Spark_Versions.yml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/beam_PreCommit_Java_Spark_Versions.yml
b/.github/workflows/beam_PreCommit_Java_Spark_Versions.yml
index 71f1ccb21a4..969dd363643 100644
--- a/.github/workflows/beam_PreCommit_Java_Spark_Versions.yml
+++ b/.github/workflows/beam_PreCommit_Java_Spark_Versions.yml
@@ -90,7 +90,9 @@ jobs:
- name: Setup environment
uses: ./.github/actions/setup-environment-action
with:
- java-version: 11
+ java-version: |
+ 17
+ 11
- name: run sparkVersionsTest script
uses: ./.github/actions/gradle-command-self-hosted-action
with: