This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a commit to branch branch-1.9
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/branch-1.9 by this push:
     new ed132bf30 ORC-1507: Use `Zulu` JDK distribution and switch from 
`21-ea` to `21`
ed132bf30 is described below

commit ed132bf301f75d257a87b792e3e19ede22d22197
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Wed Sep 20 10:38:39 2023 -0700

    ORC-1507: Use `Zulu` JDK distribution and switch from `21-ea` to `21`
    
    ### What changes were proposed in this pull request?
    
    This PR aims to use `Zulu` JDK distribution instead of `Eclipse Temurin` 
because Java 21 is not ready in `Temurin` yet.
    
    ### Why are the changes needed?
    
    To have Java 21 test coverage.
    
    ![Screenshot 2023-09-20 at 9 40 28 
AM](https://github.com/apache/orc/assets/9700541/0dbb38ba-34a7-4180-9608-e577bb3023e2)
    
    ### How was this patch tested?
    
    Pass the CIs.
    
    Closes #1620 from dongjoon-hyun/ORC-1507.
    
    Authored-by: Dongjoon Hyun <[email protected]>
    Signed-off-by: Dongjoon Hyun <[email protected]>
    (cherry picked from commit d0054493c923a0f2b9efa65106f20c9a1951d509)
    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 0b4d73512..f5c747bc0 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -43,7 +43,7 @@ jobs:
             java: 8
             cxx: g++
           - os: ubuntu-20.04
-            java: 21-ea
+            java: 21
             cxx: g++
     env:
       MAVEN_OPTS: -Xmx2g
@@ -61,7 +61,7 @@ jobs:
     - name: Install Java ${{ matrix.java }}
       uses: actions/setup-java@v3
       with:
-        distribution: temurin
+        distribution: zulu
         java-version: ${{ matrix.java }}
     - name: "Test"
       run: |

Reply via email to