You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juneau.apache.org by ja...@apache.org on 2020/07/10 16:07:14 UTC

[juneau] branch master updated: Add build reports.

This is an automated email from the ASF dual-hosted git repository.

jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git


The following commit(s) were added to refs/heads/master by this push:
     new f406d67f Add build reports.
f406d67f is described below

commit f406d67f8c5c94abaea9a8b4c6fc20a1e1b88677
Author: JamesBognar <ja...@salesforce.com>
AuthorDate: Fri Jul 10 12:07:08 2020 -0400

    Add build reports.
---
 Jenkinsfile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 46216ea..582fd86 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -28,8 +28,10 @@ timestamps {
 					sh "mvn clean install deploy javadoc:aggregate"
 				}
 				
-				// JUnit Results
 				junit '**/target/surefire-reports/*.xml' 
+				jacoco()
+				publishCoverage sourceFileResolver: sourceFiles('NEVER_STORE')
+				publishHTML([allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false, reportDir: '', reportFiles: 'index.html', reportName: 'HTML Report', reportTitles: ''])
 			}
 		}