This is an automated email from the ASF dual-hosted git repository.
chengpan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push:
new 1d43629af33b [SPARK-55678][BUILD] Add daily test for Java 25
1d43629af33b is described below
commit 1d43629af33bc3c3e1b089ee33965ab054d099d6
Author: Cheng Pan <[email protected]>
AuthorDate: Wed Feb 25 11:38:36 2026 +0800
[SPARK-55678][BUILD] Add daily test for Java 25
### What changes were proposed in this pull request?
Add daily test for Java 25 by
```
$ cp .github/workflows/build_java21.yml .github/workflows/build_java25.yml
```
and replace 21 with 25.
Don't expect all UT pass now, there are issues to fix.
### Why are the changes needed?
Spark now basically works with JDK 25, and a daily CI helps us to find out
remaining issues.
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Monitor daily test reports after merging.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #54472 from pan3793/SPARK-55678.
Authored-by: Cheng Pan <[email protected]>
Signed-off-by: Cheng Pan <[email protected]>
---
.github/workflows/build_java25.yml | 57 ++++++++++++++++++++++++++++++++++++++
1 file changed, 57 insertions(+)
diff --git a/.github/workflows/build_java25.yml
b/.github/workflows/build_java25.yml
new file mode 100644
index 000000000000..195fad5315ad
--- /dev/null
+++ b/.github/workflows/build_java25.yml
@@ -0,0 +1,57 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+name: "Build / Java25 (master, Scala 2.13, Hadoop 3, JDK 25)"
+
+on:
+ schedule:
+ - cron: '0 4 * * *'
+ workflow_dispatch:
+
+jobs:
+ run-build:
+ permissions:
+ packages: write
+ name: Run
+ uses: ./.github/workflows/build_and_test.yml
+ if: github.repository == 'apache/spark'
+ with:
+ java: 25
+ branch: master
+ hadoop: hadoop3
+ envs: >-
+ {
+ "PYSPARK_IMAGE_TO_TEST": "python-311",
+ "PYTHON_TO_TEST": "python3.11",
+ "SKIP_MIMA": "true",
+ "SKIP_UNIDOC": "true",
+ "DEDICATED_JVM_SBT_TESTS":
"org.apache.spark.sql.execution.datasources.parquet.ParquetFileFormatV1Suite,org.apache.spark.sql.execution.datasources.parquet.ParquetFileFormatV2Suite,org.apache.spark.sql.execution.datasources.orc.OrcSourceV1Suite,org.apache.spark.sql.execution.datasources.orc.OrcSourceV2Suite"
+ }
+ jobs: >-
+ {
+ "build": "true",
+ "pyspark": "true",
+ "sparkr": "true",
+ "tpcds-1g": "true",
+ "docker-integration-tests": "true",
+ "yarn": "true",
+ "k8s-integration-tests": "true",
+ "buf": "true",
+ "ui": "true"
+ }
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]