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-format.git
commit 6959b314b29e930a4a42bf59b976c2bf0ae7d776 Author: Dongjoon Hyun <[email protected]> AuthorDate: Wed Dec 6 18:00:22 2023 -0800 MINOR: Add `build_and_test.yml` and update build status links --- .github/workflows/build_and_test.yml | 22 ++++++++++++++++++++++ README.md | 4 ++-- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml new file mode 100644 index 0000000..6e58e85 --- /dev/null +++ b/.github/workflows/build_and_test.yml @@ -0,0 +1,22 @@ +name: Build and test + +on: + push: + branches: + - main + +jobs: + build: + if: github.repository == 'apache/orc-format' + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + + - uses: actions/setup-java@v4 + with: + distribution: zulu + java-version: 17 + + - name: Install + run: | + ./mvnw install diff --git a/README.md b/README.md index c1b2510..89c3488 100644 --- a/README.md +++ b/README.md @@ -44,8 +44,8 @@ Releases: * Plan: <a href="https://github.com/apache/orc/milestones">Apache ORC future release plan</a> The current build status: -* Main branch <a href="https://github.com/apache/orc/actions/workflows/build_and_test.yml?query=branch%3Amain"> - </a> +* Main branch <a href="https://github.com/apache/orc-format/actions/workflows/build_and_test.yml?query=branch%3Amain"> + </a> Bug tracking: <a href="http://orc.apache.org/bugs">Apache Jira</a>
