You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by am...@apache.org on 2022/05/25 09:27:29 UTC

[arrow] branch master updated: ARROW-16267: [Java] Adding support to compile Java code with JDK 18

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

amolina pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 985c25703c ARROW-16267: [Java] Adding support to compile Java code with JDK 18
985c25703c is described below

commit 985c25703c28e60a51dee09515bb8dd2a89c00e2
Author: david dali susanibar arce <da...@gmail.com>
AuthorDate: Wed May 25 11:27:15 2022 +0200

    ARROW-16267: [Java] Adding support to compile Java code with JDK 18
    
    Closes #13226 from davisusanibar/ARROW-16267
    
    Authored-by: david dali susanibar arce <da...@gmail.com>
    Signed-off-by: Alessandro Molina <am...@turbogears.org>
---
 .github/workflows/java.yml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/java.yml b/.github/workflows/java.yml
index 0a8f012823..2b3328c8fb 100644
--- a/.github/workflows/java.yml
+++ b/.github/workflows/java.yml
@@ -54,7 +54,7 @@ jobs:
     strategy:
       fail-fast: false
       matrix:
-        jdk: [8, 11, 17]
+        jdk: [8, 11, 17, 18]
         include:
         - jdk: 8
           title: AMD64 Debian 9 Java JDK 8 Maven 3.5.4
@@ -68,6 +68,10 @@ jobs:
           title: AMD64 Oracle Linux Server 8.5 Java JDK 17 Maven 3.8.5
           maven: 3.8.5
           image: oracle-java
+        - jdk: 18
+          title: AMD64 Oracle Linux Server 8.6 Java JDK 18 Maven 3.8.5
+          maven: 3.8.5
+          image: oracle-java
     env:
       JDK: ${{ matrix.jdk }}
       MAVEN: ${{ matrix.maven }}