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 7587a394d ORC-1557: Add GitHub Action CI for `Docker Test`
7587a394d is described below
commit 7587a394d8a548e2e81bec30022e4e7d0a427ecc
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Sun Dec 24 00:53:07 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 #1698 from dongjoon-hyun/ORC-1557-1.9.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.github/workflows/build_and_test.yml | 23 +++++++++++++++++++++--
1 file changed, 21 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/build_and_test.yml
b/.github/workflows/build_and_test.yml
index f5c747bc0..37d399c3f 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -3,13 +3,11 @@ name: Build and test
on:
push:
paths-ignore:
- - 'docker'
- 'site/**'
branches:
- branch-1.9
pull_request:
paths-ignore:
- - 'docker'
- 'site/**'
branches:
- branch-1.9
@@ -20,6 +18,27 @@ concurrency:
cancel-in-progress: true
jobs:
+ docker:
+ name: "Docker ${{ matrix.os }}"
+ runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ os:
+ - centos7
+ - debian10
+ - debian11
+ - debian12
+ - fedora37
+ - rocky9
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+ - name: "Test"
+ run: |
+ cd docker
+ ./run-one.sh local branch-1.9 ${{ matrix.os }}
+
build:
name: "Java ${{ matrix.java }} and ${{ matrix.cxx }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}