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 2021/11/14 19:59:27 UTC

[maven-surefire] branch jenkins created (now 8a91e53)

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

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


      at 8a91e53  build fails but tests pass, why?

This branch includes the following new commits:

     new 8a91e53  build fails but tests pass, why?

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[maven-surefire] 01/01: build fails but tests pass, why?

Posted by ti...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 8a91e53675d341cbfbd0ff7820d7f382192d96fa
Author: tibordigana <ti...@gmail.com>
AuthorDate: Sun Nov 14 20:59:14 2021 +0100

    build fails but tests pass, why?
---
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index e6b60e4..207c57f 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 = [16, 11, 8, 7]
 
-final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its']
+final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its', '-DskipTests=true']
 final def goals = ['clean', 'install']
 final def goalsDepl = ['clean', 'deploy', 'jacoco:report']
 final Map stages = [:]
@@ -115,7 +115,7 @@ timeout(time: 12, unit: 'HOURS') {
         currentBuild.result = 'FAILURE'
         throw e
     } finally {
-        jenkinsNotify()
+        //jenkinsNotify()
     }
 }