-
Notifications
You must be signed in to change notification settings - Fork 0
86 lines (73 loc) · 2.31 KB
/
build-test-sonar.yml
File metadata and controls
86 lines (73 loc) · 2.31 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
name: SonarCloud CI
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
- name: Cache Maven
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven
- name: Start Docker Compose
run: docker compose up -d
- name: Build & Run Tests
run: mvn -B clean verify -Dspring.profiles.active=dev
- name: Upload Test Reports for Sonar
uses: actions/upload-artifact@v4
with:
name: test-reports
path: |
target/site/jacoco/jacoco.xml
target/checkstyle-result.xml
sonar-analysis:
needs: build-and-test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
- name: Cache Sonar
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Download Test Reports
uses: actions/download-artifact@v4
with:
name: test-reports
path: target/site
- name: Start Docker Compose
run: docker compose up -d
- name: SonarCloud Analysis
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: |
mvn clean verify sonar:sonar \
-Dsonar.projectKey=felipemelozx_TrackMoney \
-Dsonar.organization=felipemelozx-trackmoney \
-Dsonar.host.url=https://sonarcloud.io \
-Dsonar.login=${{ secrets.SONAR_TOKEN }} \
-Dsonar.coverage.jacoco.xmlReportPaths=target/site/jacoco/jacoco.xml \
-Dsonar.java.checkstyle.reportPaths=target/checkstyle-result.xml \
-Dsonar.coverage.exclusions=**/*Entity.java \
-Dsonar.exclusions=**/seed/**