You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by do...@apache.org on 2021/01/16 22:14:58 UTC

[orc] branch master updated: ORC-713: Add Java 15 to GitHub action (#611)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 9233478  ORC-713: Add Java 15 to GitHub action (#611)
9233478 is described below

commit 92334785b4b7d541a5e63814e6efc4bd45abbfea
Author: William Hyun <62...@users.noreply.github.com>
AuthorDate: Sat Jan 16 14:14:50 2021 -0800

    ORC-713: Add Java 15 to GitHub action (#611)
    
    ### What changes were proposed in this pull request?
    
    This PR aims to add Java 15 to GitHub action as a preparation for Java 17.
    
    ### Why are the changes needed?
    
    Java 17 is the next LTS.
    
    ### How was this patch tested?
    
    Pass the GitHub action.
---
 .github/workflows/build_and_test.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml
index a6466ec..73a286e 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -11,13 +11,14 @@ on:
 jobs:
   build:
     name: "Build with Java ${{ matrix.java }}"
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-20.04
     strategy:
       fail-fast: false
       matrix:
         java:
           - 1.8
           - 11
+          - 15
     env:
       MAVEN_OPTS: -Xmx2g
       MAVEN_SKIP_RC: true