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:39:44 UTC

[plc4x] branch develop updated: chore(build): include matrix in test report name

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 b869ebaad4 chore(build): include matrix in test report name
b869ebaad4 is described below

commit b869ebaad4aaedefb007a731c8b3bb15cb53b7f1
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Fri Jun 2 12:39:37 2023 +0200

    chore(build): include matrix in test report name
---
 .github/workflows/go-platform.yml   | 2 +-
 .github/workflows/java-platform.yml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/go-platform.yml b/.github/workflows/go-platform.yml
index 57938fa910..635fa9b5dd 100644
--- a/.github/workflows/go-platform.yml
+++ b/.github/workflows/go-platform.yml
@@ -141,7 +141,7 @@ jobs:
         uses: dorny/test-reporter@v1
         if: success() || failure()
         with:
-          name: Golang Tests
+          name: "Golang Tests (OS: ${{ matrix.os }})"
           path: '**/go-junit-report.xml'
           reporter: java-junit
 
diff --git a/.github/workflows/java-platform.yml b/.github/workflows/java-platform.yml
index aa1456a3f6..b6659d233d 100644
--- a/.github/workflows/java-platform.yml
+++ b/.github/workflows/java-platform.yml
@@ -138,7 +138,7 @@ jobs:
         uses: dorny/test-reporter@v1
         if: success() || failure()
         with:
-          name: Java Tests
+          name: "Java Tests (OS: ${{ matrix.os }}, Java: ${{ matrix.java }})"
           path: '**/(surefire|failsafe)-reports/TEST-*.xml'
           reporter: java-junit