2020-11-09 00:26:11 +01:00
|
|
|
name: Build
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- develop
|
|
|
|
pull_request:
|
|
|
|
types: [opened, synchronize, reopened]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
2021-06-20 21:18:10 +02:00
|
|
|
- name: Set up JDK 16
|
2020-11-09 00:26:11 +01:00
|
|
|
uses: actions/setup-java@v1
|
|
|
|
with:
|
2021-06-20 21:18:10 +02:00
|
|
|
java-version: 16
|
2020-11-09 00:26:11 +01:00
|
|
|
- name: Cache SonarCloud packages
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.sonar/cache
|
|
|
|
key: ${{ runner.os }}-sonar
|
|
|
|
restore-keys: ${{ runner.os }}-sonar
|
|
|
|
- name: Cache Maven packages
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.m2
|
|
|
|
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
|
|
|
|
restore-keys: ${{ runner.os }}-m2
|
2020-11-09 00:35:38 +01:00
|
|
|
- name: Build
|
2021-06-20 21:18:10 +02:00
|
|
|
run: mvn --batch-mode clean org.jacoco:jacoco-maven-plugin:prepare-agent install
|
2020-11-09 00:26:11 +01:00
|
|
|
- run: mkdir staging && cp target/*.jar staging
|
|
|
|
- name: Save artifacts
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: Package
|
2020-11-09 00:35:38 +01:00
|
|
|
path: staging
|