You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2020/06/01 10:35:00 UTC

[maven] 13/29: test results only from core-it-suite

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

olamy pushed a commit to branch it_runs
in repository https://gitbox.apache.org/repos/asf/maven.git

commit 6a34596102c6734f3ba28bf5243a8f35fd1bf193
Author: olivier lamy <ol...@apache.org>
AuthorDate: Mon Jun 1 14:04:55 2020 +1000

    test results only from core-it-suite
    
    Signed-off-by: olivier lamy <ol...@apache.org>
---
 Jenkinsfile.its | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile.its b/Jenkinsfile.its
index 298a671..dfb96a6 100644
--- a/Jenkinsfile.its
+++ b/Jenkinsfile.its
@@ -25,8 +25,7 @@ pipeline {
         sh "ls -lrt"
         withMaven(jdk: 'JDK 1.8 (latest)',
                   maven: 'Maven 3.6.3',
-                  publisherStrategy: 'EXPLICIT',
-                  options: [junitPublisher(disabled: false)]){
+                  publisherStrategy: 'EXPLICIT'){
           sh "mvn clean test -Prun-its,embdedded -Dmaven.test.failure.ignore=true -Dmaven.repo.local=./repo  -DmavenDistro=${env.WORKSPACE}/apache-maven/target/apache-maven-bin.zip -DwrapperDistroDir=${env.WORKSPACE}/apache-maven/target -DmavenWrapper=${env.WORKSPACE}/maven-wrapper/target/maven-wrapper.jar"
         }
       }
@@ -34,6 +33,7 @@ pipeline {
   }
   post {
     always {
+      junit 'core-it-suite/target/surefire-reports/*.xml'
       cleanWs()
     }
   }