-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (37 loc) · 1.42 KB
/
coverage-and-sonar-analysis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Coverage and Sonar Analysis
on:
push:
branches:
- master
tags:
- '[0-9]+.[0-9]+.[0-9]+'
paths-ignore:
- '**.md'
jobs:
sonarcloud:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: |
mvn --batch-mode --no-transfer-progress package -DskipTests
#mvn --batch-mode --no-transfer-progress help:evaluate -Dexpression=project.properties
#mvn --batch-mode --no-transfer-progress help:evaluate -Daggregate.report.dir=target/site/jacoco-aggregate/jacoco.xml -Dexpression=project.properties -file stride-application/pom.xml
#mvn --batch-mode --no-transfer-progress help:evaluate -Daggregate.report.dir=target/site/jacoco-aggregate/jacoco.xml -Dexpression=project.properties -file stride-application-junit5/pom.xml
- name: SonarCloud Scan
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
run: |
mvn --batch-mode --no-transfer-progress clean verify \
-Dsonar.login=${{ env.SONAR_TOKEN }} \
-P coverage,sonar