bentobox/.github/workflows/build.yml

45 lines
1.4 KiB
YAML
Raw Permalink Normal View History

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:
2023-06-11 18:50:48 +02:00
- uses: actions/checkout@v3
2020-11-09 00:26:11 +01:00
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
2024-05-05 06:05:19 +02:00
- name: Set up JDK 21
2023-06-11 18:50:48 +02:00
uses: actions/setup-java@v3
2020-11-09 00:26:11 +01:00
with:
2021-07-06 22:58:17 +02:00
distribution: 'adopt'
2024-05-05 06:05:19 +02:00
java-version: '21'
2020-11-09 00:26:11 +01:00
- name: Cache SonarCloud packages
2023-06-11 18:50:48 +02:00
uses: actions/cache@v3
2020-11-09 00:26:11 +01:00
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
2021-09-13 05:54:30 +02:00
- name: Cache Maven packages
2023-06-11 18:50:48 +02:00
uses: actions/cache@v3
2020-11-09 00:26:11 +01:00
with:
2021-09-13 05:54:30 +02: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
2023-06-11 18:50:48 +02:00
uses: actions/upload-artifact@v3
2020-11-09 00:26:11 +01:00
with:
name: Package
2020-11-09 00:35:38 +01:00
path: staging