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 2023/12/24 09:23:05 UTC

(orc) branch branch-1.8 updated: ORC-1557: Add GitHub Action CI for `Docker Test`

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

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


The following commit(s) were added to refs/heads/branch-1.8 by this push:
     new 24c07e125 ORC-1557: Add GitHub Action CI for `Docker Test`
24c07e125 is described below

commit 24c07e12570a2fd6dce136025b90e268c074b02e
Author: Dongjoon Hyun <do...@apache.org>
AuthorDate: Sun Dec 24 01:22:53 2023 -0800

    ORC-1557: Add GitHub Action CI for `Docker Test`
    
    ### What changes were proposed in this pull request?
    
    This PR aims to add a new GitHub Action CI pipeline for `Docker Test`.
    
    ### Why are the changes needed?
    
    To automate `Docker` and reduce the overhead of release process.
    
    ### How was this patch tested?
    
    Pass the CIs.
    
    Closes #1699 from dongjoon-hyun/ORC-1557-1.8.
    
    Authored-by: Dongjoon Hyun <do...@apache.org>
    Signed-off-by: Dongjoon Hyun <do...@apache.org>
---
 .github/workflows/build_and_test.yml | 22 ++++++++++++++++++++--
 1 file changed, 20 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml
index a5d7048f3..f1faf3699 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -3,18 +3,36 @@ name: Build and test
 on:
   push:
     paths-ignore:
-    - 'docker'
     - 'site/**'
     branches:
     - branch-1.8
   pull_request:
     paths-ignore:
-    - 'docker'
     - 'site/**'
     branches:
     - branch-1.8
 
 jobs:
+  docker:
+    name: "Docker ${{ matrix.os }}"
+    runs-on: ubuntu-latest
+    strategy:
+      fail-fast: false
+      matrix:
+        os:
+          - centos7
+          - debian10
+          - debian11
+          - ubuntu18
+          - fedora37
+    steps:
+    - name: Checkout
+      uses: actions/checkout@v2
+    - name: "Test"
+      run: |
+        cd docker
+        ./run-one.sh local branch-1.8 ${{ matrix.os }}
+
   build:
     name: "Java ${{ matrix.java }} and ${{ matrix.cxx }} on ${{ matrix.os }}"
     runs-on: ${{ matrix.os }}