actions/setup-java@v4 #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java CI | ||
on: [push, pull_request] | ||
jobs: | ||
maven-ubuntu20: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: sudo apt-get install protobuf-compiler | ||
distribution: zulu | ||
Check failure on line 11 in .github/workflows/java.yml
|
||
- name: Set up JDK 8 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: zulu | ||
java-version: 8 | ||
- name: Build with Maven | ||
run: mvn -B package --file pom.xml | ||
maven-ubuntu22: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: sudo apt-get install protobuf-compiler | ||
distribution: zulu | ||
- name: Set up JDK 8 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: zulu | ||
java-version: 8 | ||
- name: Build with Maven | ||
run: mvn -B package --file pom.xml | ||
ant-ubuntu20: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: sudo apt-get install protobuf-compiler libprotobuf-java | ||
distribution: zulu | ||
- name: Set up JDK 8 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: zulu | ||
java-version: 8 | ||
- name: Build with Ant | ||
run: ant | ||
ant-ubuntu22: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: sudo apt-get install protobuf-compiler libprotobuf-java | ||
distribution: zulu | ||
- name: Set up JDK 8 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: zulu | ||
java-version: 8 | ||
- name: Build with Ant | ||
run: ant | ||