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/07 10:26:52 UTC

[plc4x] branch develop updated: chore(build): fix report 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 8544a45057 chore(build): fix report paths
8544a45057 is described below

commit 8544a450570a727a850cead760dc6c7aefa50b92
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Wed Jun 7 12:26:42 2023 +0200

    chore(build): fix report paths
---
 .github/workflows/go-platform.yml   | 8 ++++++--
 .github/workflows/java-platform.yml | 8 ++++++--
 2 files changed, 12 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/go-platform.yml b/.github/workflows/go-platform.yml
index 0ca271c92e..92794714ff 100644
--- a/.github/workflows/go-platform.yml
+++ b/.github/workflows/go-platform.yml
@@ -138,7 +138,9 @@ jobs:
         if: failure()
         with:
           name: "golang-test-report-first-failure-${{ matrix.os }}"
-          path: '**/go-junit-report.xml'
+          path: |
+            **/surefire-reports/go-junit-report.xml
+            **/reports/test-out-verbose.log
 
       - name: Run mvnv without BacNet regression tests
         if: ${{ failure() }}
@@ -149,7 +151,9 @@ jobs:
         if: success() || failure()
         with:
           name: "golang-test-report-${{ matrix.os }}"
-          path: '**/go-junit-report.xml'
+          path: |
+            **/surefire-reports/go-junit-report.xml
+            **/reports/test-out-verbose.log
 
       - name: Perform CodeQL Analysis
         uses: github/codeql-action/analyze@v2
diff --git a/.github/workflows/java-platform.yml b/.github/workflows/java-platform.yml
index bb0961e130..798e2db12b 100644
--- a/.github/workflows/java-platform.yml
+++ b/.github/workflows/java-platform.yml
@@ -135,7 +135,9 @@ jobs:
         if: failure()
         with:
           name: "java-test-report-first-failure-${{ matrix.os }}-java-${{ matrix.java }}"
-          path: '**/(surefire|failsafe)-reports/TEST-*.xml'
+          path: |
+            **/surefire-reports/TEST-*.xml
+            **/failsafe-reports/TEST-*.xml
 
       - name: Run mvnv without BacNet regression tests
         if: ${{ failure() }}
@@ -146,7 +148,9 @@ jobs:
         if: success() || failure()
         with:
           name: "java-test-report-${{ matrix.os }}-java-${{ matrix.java }}"
-          path: '**/(surefire|failsafe)-reports/TEST-*.xml'
+          path: |
+            **/surefire-reports/TEST-*.xml
+            **/failsafe-reports/TEST-*.xml
 
       - name: Perform CodeQL Analysis
         uses: github/codeql-action/analyze@v2