54 lines
1.3 KiB
YAML
54 lines
1.3 KiB
YAML
name: Java CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
maven-ubuntu20:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: sudo apt-get install protobuf-compiler
|
|
- name: Set up JDK 1.8
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 1.8
|
|
- name: Build with Maven
|
|
run: mvn -B package --file pom.xml
|
|
|
|
maven-ubuntu22:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: sudo apt-get install protobuf-compiler
|
|
- name: Set up JDK 1.8
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 1.8
|
|
- name: Build with Maven
|
|
run: mvn -B package --file pom.xml
|
|
|
|
ant-ubuntu20:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: sudo apt-get install protobuf-compiler libprotobuf-java
|
|
- name: Set up JDK 1.8
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 1.8
|
|
- name: Build with Ant
|
|
run: ant
|
|
|
|
ant-ubuntu22:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: sudo apt-get install protobuf-compiler libprotobuf-java
|
|
- name: Set up JDK 1.8
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 1.8
|
|
- name: Build with Ant
|
|
run: ant
|
|
|