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 11:07:48 UTC

[plc4x] branch develop updated: chore(build): disable java mac/ubuntu reporting due to failure Error: RangeError: Maximum call stack size exceeded

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 1bf079bd41 chore(build): disable java mac/ubuntu reporting due to failure Error: RangeError: Maximum call stack size exceeded
1bf079bd41 is described below

commit 1bf079bd410ad3426936d370e6aeafbbe14c3479
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Wed Jun 7 13:07:41 2023 +0200

    chore(build): disable java mac/ubuntu reporting due to failure Error: RangeError: Maximum call stack size exceeded
---
 .github/workflows/java-platform-test-report.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/java-platform-test-report.yml b/.github/workflows/java-platform-test-report.yml
index aa2be89d4c..72fd53e145 100644
--- a/.github/workflows/java-platform-test-report.yml
+++ b/.github/workflows/java-platform-test-report.yml
@@ -29,7 +29,9 @@ jobs:
       matrix:
         # 8 not anymore supported for building
         java: [ 11, 17, 18 ]
-        os: [ ubuntu-latest, macos-latest, windows-latest ]
+        # TODO: only works on windows due to https://github.com/dorny/test-reporter/issues/249
+        #os: [ ubuntu-latest, macos-latest, windows-latest ]
+        os: [ windows-latest ]
       fail-fast: false
     runs-on: ${{ matrix.os }}
     steps: