2024-09-25 14:15:06 +00:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build and analyze
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
2024-09-25 15:15:45 +00:00
|
|
|
- name: Set up JDK 21
|
2024-09-25 14:15:06 +00:00
|
|
|
uses: actions/setup-java@v1
|
|
|
|
with:
|
2024-09-25 15:15:45 +00:00
|
|
|
java-version: 21
|
2024-09-25 14:15:06 +00:00
|
|
|
- name: Cache SonarQube packages
|
2024-09-26 05:25:14 +00:00
|
|
|
uses: actions/cache@v4
|
2024-09-25 14:15:06 +00:00
|
|
|
with:
|
|
|
|
path: ~/.sonar/cache
|
|
|
|
key: ${{ runner.os }}-sonar
|
|
|
|
restore-keys: ${{ runner.os }}-sonar
|
|
|
|
- name: Cache Gradle packages
|
2024-09-26 05:25:14 +00:00
|
|
|
uses: actions/cache@v4
|
2024-09-25 14:15:06 +00:00
|
|
|
with:
|
|
|
|
path: ~/.gradle/caches
|
|
|
|
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
|
|
|
|
restore-keys: ${{ runner.os }}-gradle
|
2024-09-25 15:15:45 +00:00
|
|
|
- name: Coverage
|
|
|
|
env:
|
|
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
|
|
|
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
|
|
|
|
run: ./gradlew test jacocoTestReport sonar
|
2024-09-25 14:15:06 +00:00
|
|
|
- name: Build and analyze
|
|
|
|
env:
|
|
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
|
|
|
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
|
|
|
|
run: ./gradlew build sonar --info
|