You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2019/11/12 13:57:50 UTC

[maven-surefire] branch SUREFIRE-1631 updated: disabled all

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

tibordigana pushed a commit to branch SUREFIRE-1631
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git


The following commit(s) were added to refs/heads/SUREFIRE-1631 by this push:
     new 7a09314  disabled all
7a09314 is described below

commit 7a09314e96eb988dbd98ea2620a2cf6a97cd87f7
Author: tibordigana <ti...@apache.org>
AuthorDate: Tue Nov 12 14:57:43 2019 +0100

    disabled all
---
 Jenkinsfile                                                           | 2 +-
 .../src/main/java/org/apache/maven/surefire/booter/ForkedBooter.java  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 1811100..d37242d 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -35,7 +35,7 @@ final def mavens = env.BRANCH_NAME == 'master' ? ['3.6.x', '3.2.x'] : ['3.6.x']
 // all non-EOL versions and the first EA
 final def jdks = [14, 13, 11, 8, 7]
 
-final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its']
+final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its', '-DskipTests', '-DskipITs']
 final def goals = ['clean', 'install']
 final def goalsDepl = ['clean', 'deploy', 'jacoco:report']
 final Map stages = [:]
diff --git a/surefire-booter/src/main/java/org/apache/maven/surefire/booter/ForkedBooter.java b/surefire-booter/src/main/java/org/apache/maven/surefire/booter/ForkedBooter.java
index 3a05844..51564d4 100644
--- a/surefire-booter/src/main/java/org/apache/maven/surefire/booter/ForkedBooter.java
+++ b/surefire-booter/src/main/java/org/apache/maven/surefire/booter/ForkedBooter.java
@@ -231,7 +231,7 @@ public final class ForkedBooter
                                         + NL
                                         + generateThreadDump() );
 
-                        kill();
+                        // kill();
                     }
                 }
                 catch ( RuntimeException e )
@@ -318,7 +318,7 @@ public final class ForkedBooter
                                         + NL
                                         + generateThreadDump() );
 
-                        kill();
+                        // kill();
                     }
                 }
             }