This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch branch-1.7
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/branch-1.7 by this push:
new 9b4270a95 ORC-1557: Add GitHub Action CI for `Docker Test`
9b4270a95 is described below
commit 9b4270a951922bbdb4893cfa2426a7741f51212c
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Sun Dec 24 03:20:20 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 #1700 from dongjoon-hyun/ORC-1557-1.7.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.github/workflows/build_and_test.yml | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/.github/workflows/build_and_test.yml
b/.github/workflows/build_and_test.yml
index 814edd19b..394c036e4 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -9,6 +9,25 @@ on:
- branch-1.7
jobs:
+ docker:
+ name: "Docker ${{ matrix.os }}"
+ runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ os:
+ - centos7
+ - debian10
+ - debian11
+ - ubuntu18
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+ - name: "Test"
+ run: |
+ cd docker
+ ./run-one.sh local branch-1.7 ${{ matrix.os }}
+
build:
name: "Java ${{ matrix.java }} and ${{ matrix.cxx }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}