This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/main by this push:
new 2d3da6a56 ORC-1557: Add GitHub Action CI for `Docker Test`
2d3da6a56 is described below
commit 2d3da6a56f36305ac1c193eed25c6cf57a3c7964
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Sun Dec 24 00:49:49 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 #1696 from dongjoon-hyun/dockertest.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.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 48e6fa348..af61de7d4 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:
- main
pull_request:
paths-ignore:
- - 'docker'
- 'site/**'
branches:
- main
@@ -20,6 +18,26 @@ concurrency:
cancel-in-progress: true
jobs:
+ docker:
+ name: "Docker ${{ matrix.os }}"
+ runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ os:
+ - debian11
+ - debian12
+ - ubuntu24
+ - fedora37
+ - rocky9
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+ - name: "Test"
+ run: |
+ cd docker
+ ./run-one.sh local main ${{ matrix.os }}
+
build:
name: "Java ${{ matrix.java }} and ${{ matrix.cxx }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}