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 2021/12/03 09:07:06 UTC

[plc4x] branch develop updated: fix(ci/codegen): set streamLogsOnFailures to true

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 5920d67  fix(ci/codegen): set streamLogsOnFailures to true
5920d67 is described below

commit 5920d67765bd269dfd97eba8c3bfaa4b5c50a4d6
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Fri Dec 3 10:07:00 2021 +0100

    fix(ci/codegen): set streamLogsOnFailures to true
---
 code-generation/language-c/pom.xml                 | 1 +
 code-generation/language-go/pom.xml                | 1 +
 code-generation/language-java/pom.xml              | 1 +
 plc4go/internal/plc4go/spi/utils/dumpUtils_test.go | 4 ++--
 4 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/code-generation/language-c/pom.xml b/code-generation/language-c/pom.xml
index 314846f..efa64b8 100644
--- a/code-generation/language-c/pom.xml
+++ b/code-generation/language-c/pom.xml
@@ -52,6 +52,7 @@
             <configuration>
               <skipInvocation>${skip-code-generation-tests}</skipInvocation>
               <debug>true</debug>
+              <streamLogsOnFailures>true</streamLogsOnFailures>
               <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
               <projectsDirectory>src/test/resources</projectsDirectory>
               <cloneProjectsTo>${project.build.directory}/integration-tests</cloneProjectsTo>
diff --git a/code-generation/language-go/pom.xml b/code-generation/language-go/pom.xml
index c5fcddf..4c7aa20 100644
--- a/code-generation/language-go/pom.xml
+++ b/code-generation/language-go/pom.xml
@@ -52,6 +52,7 @@
             <configuration>
               <skipInvocation>${skip-code-generation-tests}</skipInvocation>
               <debug>true</debug>
+              <streamLogsOnFailures>true</streamLogsOnFailures>
               <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
               <projectsDirectory>src/test/resources</projectsDirectory>
               <cloneProjectsTo>${project.build.directory}/integration-tests</cloneProjectsTo>
diff --git a/code-generation/language-java/pom.xml b/code-generation/language-java/pom.xml
index bb42e1b..05c63a8 100644
--- a/code-generation/language-java/pom.xml
+++ b/code-generation/language-java/pom.xml
@@ -52,6 +52,7 @@
             <configuration>
               <skipInvocation>${skip-code-generation-tests}</skipInvocation>
               <debug>true</debug>
+              <streamLogsOnFailures>true</streamLogsOnFailures>
               <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
               <projectsDirectory>src/test/resources</projectsDirectory>
               <cloneProjectsTo>${project.build.directory}/integration-tests</cloneProjectsTo>
diff --git a/plc4go/internal/plc4go/spi/utils/dumpUtils_test.go b/plc4go/internal/plc4go/spi/utils/dumpUtils_test.go
index c1a7669..7a160ad 100644
--- a/plc4go/internal/plc4go/spi/utils/dumpUtils_test.go
+++ b/plc4go/internal/plc4go/spi/utils/dumpUtils_test.go
@@ -55,7 +55,7 @@ func TestBoxAnything(t *testing.T) {
 				anything:  1,
 				charWidth: 0,
 			},
-			want:  asciiBox(`
+			want: asciiBox(`
 ╔═exampleInt═════════╗
 ║0x0000000000000001 1║
 ╚════════════════════╝
@@ -68,7 +68,7 @@ func TestBoxAnything(t *testing.T) {
 				anything:  123123123,
 				charWidth: 0,
 			},
-			want:  asciiBox(`
+			want: asciiBox(`
 ╔═exampleInt═════════════════╗
 ║0x000000000756b5b3 123123123║
 ╚════════════════════════════╝