Adding JaCoCo to daily job. 80/14580/3
authorAl Harrington <al.harrington@hp.com>
Wed, 28 Jan 2015 20:30:39 +0000 (12:30 -0800)
committerAl Harrington <al.harrington@hp.com>
Wed, 28 Jan 2015 22:30:31 +0000 (14:30 -0800)
Change-Id: Ia1ba0002589cdec9e4a8479a9a7ff36abfda3528
Signed-off-by: Al Harrington <al.harrington@hp.com>
jjb/job.yaml.template
jjb/releng-macros.yaml

index 9982e88444895e2a6eb3d9be3d87f2eb44e4c98f..c44316d389f9dced1d947abbeb29bca7d7ca4b87 100644 (file)
     publishers:
         - email-notification:
             email-prefix: '[PROJECT]'
+        - jacoco-report
 
 - job-template:
     name: 'PROJECT-integration-{stream}'
index 1f4b564e9d7916a6e2c8ab28a36f36b285ba7279..eeff7a818e41ae9490e3f1dedfe4084dbd78d255 100644 (file)
             send-to:
                 - developers
                 - recipients
+
+- publisher:
+        name: jacoco-report
+        publishers:
+            - jacoco:
+                exec-pattern: "**/**.exec"
+                class-pattern: "**/classes"
+                source-pattern: "**/src/main/java"
+                status-update: true
+                targets:
+                  - branch:
+                      healthy: 10
+                      unhealthy: 20
+                  - method:
+                      healthy: 50
+                      unhealthy: 40