You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2021/10/18 08:19:29 UTC

[incubator-hop] branch 2.0.0 updated: HOP-2231:fix build

This is an automated email from the ASF dual-hosted git repository.

hansva pushed a commit to branch 2.0.0
in repository https://gitbox.apache.org/repos/asf/incubator-hop.git


The following commit(s) were added to refs/heads/2.0.0 by this push:
     new d0c259a  HOP-2231:fix build
     new 24d5a49  Merge pull request #1152 from hansva/2.0.0
d0c259a is described below

commit d0c259a95b2006b0b54e18e87e327f72f7a042da
Author: Hans Van Akelyen <ha...@gmail.com>
AuthorDate: Mon Oct 18 10:14:19 2021 +0200

    HOP-2231:fix build
---
 Jenkinsfile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 7b55f44..e05724e 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -21,7 +21,8 @@ def AGENT_LABEL = env.AGENT_LABEL ?: 'ubuntu'
 def JDK_NAME = env.JDK_NAME ?: 'jdk_11_latest'
 def MAVEN_NAME = env.MAVEN_NAME ?: 'maven_3_latest'
 
-def MAVEN_PARAMS = "-T 2 -U -B -e -fae -fn -V -Dmaven.compiler.fork=true -Dsurefire.rerunFailingTestsCount=2"
+def MAVEN_PARAMS = "-T 2 -U -B -e -fn -V -Dmaven.compiler.fork=true -Dsurefire.rerunFailingTestsCount=2"
+//removed fae (fail at end) by fn (fail never) to have an overview of the errors during development
 
 pipeline {