You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by sr...@apache.org on 2023/06/02 10:24:55 UTC

[plc4x] branch develop updated: chore(build): fix surefire/failsafe paths

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

sruehl pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new e9c9050eaa chore(build): fix surefire/failsafe paths
e9c9050eaa is described below

commit e9c9050eaad1144ccee3e44e96f3365fe09a9b3b
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Fri Jun 2 12:24:47 2023 +0200

    chore(build): fix surefire/failsafe paths
---
 .github/workflows/java-platform.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/java-platform.yml b/.github/workflows/java-platform.yml
index 017a31ca77..9a27be5666 100644
--- a/.github/workflows/java-platform.yml
+++ b/.github/workflows/java-platform.yml
@@ -139,7 +139,7 @@ jobs:
         if: success() || failure()
         with:
           name: Surefire Java Tests
-          path: '**/surefire-reports/*.xml'
+          path: '**/surefire-reports/TEST-*.xml'
           reporter: java-junit
 
       - name: Failsafe Test Report
@@ -147,7 +147,7 @@ jobs:
         if: success() || failure()
         with:
           name: Failsafe Java Tests
-          path: '**/failsafe-reports/*.xml'
+          path: '**/failsafe-reports/TEST-*.xml'
           reporter: java-junit
 
       - name: Perform CodeQL Analysis