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
|
2021-07-11 03:27:57 +02:00
|
|
|
uses: actions/setup-java@v2
|
2020-11-09 00:26:11 +01:00
|
|
|
with:
|
2021-07-11 03:27:57 +02:00
|
|
|
distribution: 'adopt'
|
|
|
|
java-version: '16'
|
2020-11-09 00:26:11 +01:00
|
|
|
- name: Cache SonarCloud packages
|
2021-07-11 03:27:57 +02:00
|
|
|
uses: actions/cache@v2
|
2020-11-09 00:26:11 +01:00
|
|
|
with:
|
|
|
|
path: ~/.sonar/cache
|
|
|
|
key: ${{ runner.os }}-sonar
|
|
|
|
restore-keys: ${{ runner.os }}-sonar
|
2021-11-09 06:28:12 +01:00
|
|
|
- name: Cache Maven packages
|
2021-07-11 03:27:57 +02:00
|
|
|
uses: actions/cache@v2
|
2020-11-09 00:26:11 +01:00
|
|
|
with:
|
2021-11-09 06:28:12 +01:00
|
|
|
path: ~/.m2
|
|
|
|
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
|
|
|
|
restore-keys: ${{ runner.os }}-m2
|
|
|
|
- name: Build and analyze
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
|
|
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
|
|
|
run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=BentoBoxWorld_BentoBox
|
|
|
|
- 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
|