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:27:36 UTC

[plc4x] branch develop updated: chore(build): unify surefire/failsafe into one glob

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 dc05255f56 chore(build): unify surefire/failsafe into one glob
dc05255f56 is described below

commit dc05255f5648ac02a4d9261d2aea34d8d7a2aada
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Fri Jun 2 12:27:28 2023 +0200

    chore(build): unify surefire/failsafe into one glob
---
 .github/workflows/java-platform.yml | 14 +++-----------
 1 file changed, 3 insertions(+), 11 deletions(-)

diff --git a/.github/workflows/java-platform.yml b/.github/workflows/java-platform.yml
index 9a27be5666..aa1456a3f6 100644
--- a/.github/workflows/java-platform.yml
+++ b/.github/workflows/java-platform.yml
@@ -134,20 +134,12 @@ jobs:
         if: ${{ failure() }}
         run: ./mvnw${{ steps.platform_suffix.outputs.platform_suffix }} ${{ steps.extra_options.outputs.extra_options }} -B -P'skip-bacnet-regression-test' ${{ steps.platform_opts.outputs.platform_opts }} install
 
-      - name: Surefire Test Report
+      - name: Test Report
         uses: dorny/test-reporter@v1
         if: success() || failure()
         with:
-          name: Surefire Java Tests
-          path: '**/surefire-reports/TEST-*.xml'
-          reporter: java-junit
-
-      - name: Failsafe Test Report
-        uses: dorny/test-reporter@v1
-        if: success() || failure()
-        with:
-          name: Failsafe Java Tests
-          path: '**/failsafe-reports/TEST-*.xml'
+          name: Java Tests
+          path: '**/(surefire|failsafe)-reports/TEST-*.xml'
           reporter: java-junit
 
       - name: Perform CodeQL Analysis