We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a213b8d commit 6a70ed7Copy full SHA for 6a70ed7
Jenkinsfile
@@ -63,9 +63,12 @@ pipeline{
63
docker-compose up -d --build
64
'''
65
runtests('JAVA17_HOME_DIR')
66
- withSonarQubeEnv('SONAR_Progress') {
67
- runSonarScan('JAVA17_HOME_DIR')
68
- }
+ // Disabling Sonar scans until we can figure out how to aggregate code coverage data across
+ // multiple Gradle subprojects. Until then, the Sonar 80% check always fails because it's only picking up
+ // coverage data from one subproject.
69
+// withSonarQubeEnv('SONAR_Progress') {
70
+// runSonarScan('JAVA17_HOME_DIR')
71
+// }
72
}
73
post{
74
always{
0 commit comments