Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ORC-1174: Add Ubuntu 22.04 to GitHub Action #1120

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,24 @@ jobs:
fi
make package test-out

ubuntu22:
name: "Build on Ubuntu 22.04"
runs-on: ubuntu-latest
container:
image: ubuntu:22.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: "Test"
run: |
apt update
apt-get install --no-install-recommends -y git cmake libsasl2-dev libssl-dev make gcc g++ curl openjdk-17-jdk tzdata
mkdir -p ~/.m2
mkdir build
cd build
cmake -DANALYZE_JAVA=ON ..
make package test-out

windows:
name: "Build on Windows"
runs-on: windows-2019
Expand Down