This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/main by this push:
new 7b6f1e3a6 ORC-1998: Use Java 25 instead of 25-ea
7b6f1e3a6 is described below
commit 7b6f1e3a68934be31b06ab3579c3b84153256775
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Tue Sep 16 15:41:40 2025 -0700
ORC-1998: Use Java 25 instead of 25-ea
### What changes were proposed in this pull request?
This PR aims to use Java 25 instead of 25-ea.
### Why are the changes needed?
Java 25 is officially released. Although we are not supporting Java 25-ea
yet due to the Hadoop issue, we need to use Java 25 instead of 25-ea.
-
https://www.oracle.com/news/announcement/oracle-releases-java-25-2025-09-16/
### How was this patch tested?
Pass the CIs and check the CI logs.
```
Trying to resolve the latest version from remote
Resolved latest version as 25.0.0+36
Trying to download...
Downloading Java 25.0.0+36 (Zulu) from
https://cdn.azul.com/zulu/bin/zulu25.28.85-ca-jdk25.0.0-linux_x64.tar.gz ...
Extracting Java archive...
/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C
/home/runner/work/_temp/bd879994-5c5d-435e-b101-b0c369ad2e3a -f
/home/runner/work/_temp/5ee102e3-3ddb-4277-a371-cee4d8c1335a
Java 25.0.0+36 was downloaded
Setting Java 25.0.0+36 as the default
Creating toolchains.xml for JDK version 25 from zulu
Writing to /home/runner/.m2/toolchains.xml
Java configuration:
Distribution: zulu
Version: 25.0.0+36
Path: /opt/hostedtoolcache/Java_Zulu_jdk/25.0.0-36/x64
```
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #2405 from dongjoon-hyun/ORC-1998.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.github/workflows/build_and_test.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/build_and_test.yml
b/.github/workflows/build_and_test.yml
index 30b26639f..af17e35ac 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -81,7 +81,7 @@ jobs:
java: 17
cxx: g++
- os: ubuntu-latest
- java: 25-ea
+ java: 25
- os: macos-26
java: 21
env:
@@ -99,7 +99,7 @@ jobs:
- name: "Test"
run: |
mkdir -p ~/.m2
- if [ "${{ matrix.java }}" = "25-ea" ]; then
+ if [ "${{ matrix.java }}" = "25" ]; then
cd java
# JDK 25 Build
./mvnw package -DskipTests