]> source.dussan.org Git - poi.git/commitdiff
Add JUnit and JaCoCo publisher to Sonar-Gradle Job
authorDominik Stadler <centic@apache.org>
Sun, 7 Nov 2021 14:59:43 +0000 (14:59 +0000)
committerDominik Stadler <centic@apache.org>
Sun, 7 Nov 2021 14:59:43 +0000 (14:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894811 13f79535-47bb-0310-9956-ffa450edef68

jenkins/create_jobs.groovy

index fcb1d04376cecf18d898eb90f2eafc60962c85c7..c8397fa1cb8278189c1ad622aef54e8eff21374c 100644 (file)
@@ -383,7 +383,21 @@ poijobs.each { poijob ->
                 }
             }
             publishers {
-                if (!poijob.skipcigame) {
+                               // in archive, junit and jacoco publishers, matches beneath build/*/build/... are for Gradle-build results
+                               archiveArtifacts('build/dist/*.tar.gz,*/build/reports/**,poi-integration/build/test-results/**,*/build/libs/*.jar')
+                               archiveJunit('*/build/test-results/**/TEST-*.xml') {
+                                       testDataPublishers {
+                                               publishTestStabilityData()
+                                       }
+                               }
+                               jacocoCodeCoverage {
+                                       classPattern('*/build/classes')
+                                       execPattern('*/build/*.exec,*/build/jacoco/*.exec')
+                                       sourcePattern('*/src/main/java')
+                                       exclusionPattern('com/microsoft/**,org/openxmlformats/**,org/etsi/**,org/w3/**,schemaorg*/**,schemasMicrosoft*/**,org/apache/poi/hdf/model/hdftypes/definitions/*.class,org/apache/poi/hwpf/model/types/*.class,org/apache/poi/hssf/usermodel/DummyGraphics2d.class,org/apache/poi/sl/draw/binding/*.class')
+                               }
+
+                               if (!poijob.skipcigame) {
                     configure { project ->
                         project / publishers << 'hudson.plugins.cigame.GamePublisher' {}
                     }