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 15:20:24 UTC

[plc4x] branch develop updated: chore(build): store the first failure report

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 704fe93b97 chore(build): store the first failure report
704fe93b97 is described below

commit 704fe93b975576d8904a79a9f1d5d2cc2cd4357d
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Fri Jun 2 17:20:16 2023 +0200

    chore(build): store the first failure report
---
 .github/workflows/go-platform.yml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/.github/workflows/go-platform.yml b/.github/workflows/go-platform.yml
index 635fa9b5dd..e284aca855 100644
--- a/.github/workflows/go-platform.yml
+++ b/.github/workflows/go-platform.yml
@@ -133,6 +133,14 @@ jobs:
         run: |
           ./mvnw${{ steps.platform_suffix.outputs.platform_suffix }} ${{ steps.extra_options.outputs.extra_options }} -B -P'with-go,enable-all-checks' -pl :plc4go -am ${{ steps.platform_opts.outputs.platform_opts }} install
 
+      - name: Test Report (first failure)
+        uses: dorny/test-reporter@v1
+        if: failure()
+        with:
+          name: "Golang Tests (OS: ${{ matrix.os }}) (first failure)"
+          path: '**/go-junit-report.xml'
+          reporter: java-junit
+
       - name: Run mvnv without BacNet regression tests
         if: ${{ failure() }}
         run: ./mvnw${{ steps.platform_suffix.outputs.platform_suffix }} ${{ steps.extra_options.outputs.extra_options }} -B -P'with-go,skip-bacnet-regression-test' -pl :plc4go -am ${{ steps.platform_opts.outputs.platform_opts }} install