Commit 114d51d 1 parent e4f2cc2 commit 114d51d Copy full SHA for 114d51d
File tree 2 files changed +14
-2
lines changed
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 65
65
with :
66
66
distribution : temurin
67
67
java-version : 17
68
- cache : gradle
69
68
70
69
- name : Test project
71
70
uses : gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0
74
73
arguments : |
75
74
test jacocoTestReport -x processResources -x processTestResources
76
75
--parallel
76
+ --configuration-cache
77
77
--build-cache
78
78
--no-daemon
79
79
--scan
@@ -100,6 +100,7 @@ jobs:
100
100
timeout-minutes : 10
101
101
permissions :
102
102
contents : write
103
+ pull-requests : write
103
104
env :
104
105
VERSION : 1.23.0
105
106
steps :
@@ -126,7 +127,6 @@ jobs:
126
127
with :
127
128
distribution : temurin
128
129
java-version : 17
129
- cache : gradle
130
130
131
131
- name : Analyze code quality (main)
132
132
if : startsWith(github.event_name, 'pull_request') == false
@@ -136,6 +136,9 @@ jobs:
136
136
dependency-graph : generate-and-submit
137
137
arguments : |
138
138
sonar -x compileJava -x compileTestJava
139
+ --parallel
140
+ --configuration-cache
141
+ --build-cache
139
142
--no-daemon
140
143
--scan
141
144
-Pversion=${{ format('{0}+{1}', env.VERSION, github.RUN_NUMBER) }}
@@ -150,8 +153,13 @@ jobs:
150
153
if : startsWith(github.event_name, 'pull_request')
151
154
uses : gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0
152
155
with :
156
+ gradle-home-cache-cleanup : true
157
+ add-job-summary-as-pr-comment : always
153
158
arguments : |
154
159
sonar -x compileJava -x compileTestJava
160
+ --parallel
161
+ --configuration-cache
162
+ --build-cache
155
163
--no-daemon
156
164
--scan
157
165
-Pversion=${{ format('{0}+{1}', env.VERSION, github.RUN_NUMBER) }}
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ plugins {
4
4
alias(libs.plugins.sonarqube)
5
5
}
6
6
7
+ repositories {
8
+ gradlePluginPortal()
9
+ }
10
+
7
11
subprojects {
8
12
apply (plugin = " java" )
9
13
apply (plugin = " jacoco" )
You can’t perform that action at this time.
0 commit comments