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/02 19:01:32 UTC

[logging-log4j2] branch master updated: Use both surefire and failsafe 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-log4j2.git


The following commit(s) were added to refs/heads/master by this push:
     new 2d5b761  Use both surefire and failsafe reports
2d5b761 is described below

commit 2d5b7618cc85df211a043bd639eb633d0b0e04cb
Author: Matt Sicker <bo...@gmail.com>
AuthorDate: Sun Aug 2 14:01:26 2020 -0500

    Use both surefire and failsafe reports
    
    The default option for the scacap/surefire action only uses the surefire test results. This adds the failsafe ones, too.
---
 .github/workflows/maven.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 891ca99..47c8f07 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -52,6 +52,7 @@ jobs:
         with:
           github_token: ${{ secrets.GITHUB_TOKEN }}
           check_name: 'Linux Test Report'
+          report_paths: '**/*-reports/TEST-*.xml'
 
       - name: Inspect environment (Windows)
         if: runner.os == 'Windows'
@@ -67,3 +68,4 @@ jobs:
         with:
           github_token: ${{ secrets.GITHUB_TOKEN }}
           check_name: 'Windows Test Report'
+          report_paths: '**/*-reports/TEST-*.xml'