You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2020/08/04 03:01:04 UTC

[logging-pipelines] branch master updated: Use better names for test failure reports

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

mattsicker pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-pipelines.git


The following commit(s) were added to refs/heads/master by this push:
     new 46621d3  Use better names for test failure reports
46621d3 is described below

commit 46621d3f0fc3a3c56cb56862a51f69701a11fbc1
Author: Matt Sicker <bo...@gmail.com>
AuthorDate: Mon Aug 3 22:00:45 2020 -0500

    Use better names for test failure reports
---
 log4j/Jenkinsfile | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/log4j/Jenkinsfile b/log4j/Jenkinsfile
index 549f39c..83c5015 100644
--- a/log4j/Jenkinsfile
+++ b/log4j/Jenkinsfile
@@ -62,9 +62,8 @@ pipeline {
                         // TODO: would be nice to be able to include checkstyle, cpd, pmd, and spotbugs,
                         //       but current site build takes too long
                         recordIssues sourceCodeEncoding: 'UTF-8',
-                                referenceJobName: 'log4j/master',
                                 tools: [
-                                    junitParser(id: 'LinuxTests', pattern: '**/target/*-reports/TEST-*.xml', reportEncoding: 'UTF-8'),
+                                    junitParser(id: 'linux', name: 'Linux Tests', pattern: '**/target/*-reports/TEST-*.xml', reportEncoding: 'UTF-8'),
                                     mavenConsole(),
                                     errorProne(),
                                     java(),
@@ -83,8 +82,7 @@ pipeline {
                         bat 'if exist %userprofile%\\.embedmongo\\ rd /s /q %userprofile%\\.embedmongo'
                         mvn '-Dmaven.test.failure.ignore=true verify'
                         recordIssues sourceCodeEncoding: 'UTF-8',
-                                referenceJobName: 'log4j/master',
-                                tools: [junitParser(id: 'WindowsTests', pattern: '**/target/*-reports/TEST-*.xml', reportEncoding: 'UTF-8')]
+                                tools: [junitParser(id: 'windows', name: 'Windows Tests', pattern: '**/target/*-reports/TEST-*.xml', reportEncoding: 'UTF-8')]
                     }
                 }
             }