Skip to content

Commit

Permalink
ORC-1174: Add Ubuntu 22.04 to GitHub Action (apache#1121)
Browse files Browse the repository at this point in the history
### What changes were proposed in this pull request?

This PR aims to add `Ubuntu 22.04` to GitHub Action.

### Why are the changes needed?

This will help the verification on the latest release.

Although [GitHub Action Virtual Environments](https:/actions/virtual-environments) don't support `Ubuntu 22.04` officially yet, `Ubuntu 22.04` is available as `Public Beta`.

- actions/runner-images#5490

### How was this patch tested?

Pass the GitHub Action on this PR.
  • Loading branch information
dongjoon-hyun authored and cxzl25 committed Jan 11, 2024
1 parent 3e87b69 commit e2fb14b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
matrix:
os:
- ubuntu-20.04
- ubuntu-22.04
- macos-11
- macos-12
java:
Expand Down Expand Up @@ -66,6 +67,10 @@ jobs:
cmake -DANALYZE_JAVA=ON -DOPENSSL_ROOT_DIR=`brew --prefix [email protected]` ..
fi
make package test-out
- name: Step on failure
if: ${{ failure() }}
run: |
cat /home/runner/work/orc/orc/build/java/rat.txt
windows:
name: "Build on Windows"
Expand Down
1 change: 1 addition & 0 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@
<exclude>**/*.out</exclude>
<exclude>**/*.schema</exclude>
<exclude>**/*.md</exclude>
<exclude>**/m2.conf</exclude>
<exclude>**/target/**</exclude>
<exclude>.idea/**</exclude>
<exclude>**/*.iml</exclude>
Expand Down

0 comments on commit e2fb14b

Please sign in to comment.