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

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


The following commit(s) were added to refs/heads/buildfix by this push:
     new 8c57aeb  investigating build failure
8c57aeb is described below

commit 8c57aeba789a969ecd90f3ee97ee48e9032e53bd
Author: tibordigana <[email protected]>
AuthorDate: Mon Jul 15 12:45:15 2019 +0200

    investigating build failure
---
 Jenkinsfile                                                          | 5 ++---
 .../its/jiras/Surefire946KillMainProcessInReusableForkIT.java        | 3 +++
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 2cf89d2..1ad7a87 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -35,9 +35,8 @@ 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 = [8]
 
-final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its']
+final def options = ['-e', '-V', '-B', '-nsu', '-DskipTests']
 final def goals = ['clean', 'install']
-final def goalsDepl = ['clean', 'install', 'jacoco:report']
 final Map stages = [:]
 
 oses.eachWithIndex { osMapping, indexOfOs ->
@@ -69,7 +68,7 @@ oses.eachWithIndex { osMapping, indexOfOs ->
                         def failsafeItPort = 8000 + 100 * indexOfMaven + 10 * 
indexOfJdk
                         def allOptions = options + 
["-Dfailsafe-integration-test-port=${failsafeItPort}", 
"-Dfailsafe-integration-test-stop-port=${1 + failsafeItPort}"]
                         ws(dir: "${os == 'windows' ? "${TEMP}\\${BUILD_TAG}" : 
pwd()}") {
-                            buildProcess(stageKey, jdkName, jdkTestName, 
mvnName, first ? goalsDepl : goals, allOptions, mavenOpts, first)
+                            buildProcess(stageKey, jdkName, jdkTestName, 
mvnName, goals, allOptions, mavenOpts, first)
                         }
                     }
                 }
diff --git 
a/surefire-its/src/test/java/org/apache/maven/surefire/its/jiras/Surefire946KillMainProcessInReusableForkIT.java
 
b/surefire-its/src/test/java/org/apache/maven/surefire/its/jiras/Surefire946KillMainProcessInReusableForkIT.java
index a5740c0..1cf0c3d 100644
--- 
a/surefire-its/src/test/java/org/apache/maven/surefire/its/jiras/Surefire946KillMainProcessInReusableForkIT.java
+++ 
b/surefire-its/src/test/java/org/apache/maven/surefire/its/jiras/Surefire946KillMainProcessInReusableForkIT.java
@@ -21,6 +21,7 @@ package org.apache.maven.surefire.its.jiras;
 
 import org.apache.maven.surefire.its.fixture.SurefireJUnit4IntegrationTestCase;
 import org.junit.BeforeClass;
+import org.junit.Ignore;
 import org.junit.Test;
 
 public class Surefire946KillMainProcessInReusableForkIT
@@ -36,6 +37,7 @@ public class Surefire946KillMainProcessInReusableForkIT
     }
 
     @Test( timeout = 30000 )
+    @Ignore
     public void testHalt()
     {
         doTest( "halt" );
@@ -48,6 +50,7 @@ public class Surefire946KillMainProcessInReusableForkIT
     }
 
     @Test( timeout = 30000 )
+    @Ignore
     public void testInterrupt()
     {
         doTest( "interrupt" );

Reply via email to