File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed
gradle/plugins/build-parameters Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 62
62
with :
63
63
encryptionKey : ${{ secrets.GRADLE_ENCRYPTION_KEY }}
64
64
arguments : |
65
+ -Ptesting.enableJaCoCo=false \
65
66
-PjavaToolchain.version=${{ matrix.jdk.version }} \
66
67
-Dscan.tag.JDK_${{ matrix.jdk.version }} \
67
68
build \
@@ -101,6 +102,7 @@ jobs:
101
102
with :
102
103
encryptionKey : ${{ secrets.GRADLE_ENCRYPTION_KEY }}
103
104
arguments : |
105
+ -Ptesting.enableJaCoCo=false \
104
106
-PjavaToolchain.version=${{ matrix.jdk }} \
105
107
-PjavaToolchain.implementation=j9 \
106
108
-Dscan.tag.JDK_${{ matrix.jdk }} \
Original file line number Diff line number Diff line change 34
34
with :
35
35
encryptionKey : ${{ secrets.GRADLE_ENCRYPTION_KEY }}
36
36
arguments : |
37
- -Ptesting.enableJaCoCo \
38
37
:platform-tooling-support-tests:test \
39
38
build \
40
39
jacocoRootReport \
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ builds of the next OpenJDK.
49
49
Code coverage using [ JaCoCo] for the latest build is available on [ Codecov] .
50
50
51
51
A code coverage report can also be generated locally via the [ Gradle Wrapper] by
52
- executing ` ./gradlew -Ptesting.enableJaCoCo clean jacocoRootReport ` . The results will be available
52
+ executing ` ./gradlew clean jacocoRootReport ` . The results will be available
53
53
in ` build/reports/jacoco/jacocoRootReport/html/index.html ` .
54
54
55
55
## Develocity
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ buildParameters {
67
67
description = " Testing related parameters"
68
68
bool(" enableJaCoCo" ) {
69
69
description = " Enables JaCoCo test coverage reporting"
70
- defaultValue = false
70
+ defaultValue = true
71
71
}
72
72
bool(" enableJFR" ) {
73
73
description = " Enables Java Flight Recorder functionality"
You can’t perform that action at this time.
0 commit comments