You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by st...@apache.org on 2017/01/03 17:08:57 UTC

maven git commit: Do not pick up test results from within the integration tests themselves

Repository: maven
Updated Branches:
  refs/heads/master ec44e8f3d -> 8c154cfdf


Do not pick up test results from within the integration tests themselves


Project: http://git-wip-us.apache.org/repos/asf/maven/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/8c154cfd
Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/8c154cfd
Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/8c154cfd

Branch: refs/heads/master
Commit: 8c154cfdfa29f20ce5941ec213950abd92eef0f6
Parents: ec44e8f
Author: Stephen Connolly <st...@gmail.com>
Authored: Tue Jan 3 17:08:51 2017 +0000
Committer: Stephen Connolly <st...@gmail.com>
Committed: Tue Jan 3 17:08:51 2017 +0000

----------------------------------------------------------------------
 Jenkinsfile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven/blob/8c154cfd/Jenkinsfile
----------------------------------------------------------------------
diff --git a/Jenkinsfile b/Jenkinsfile
index b982642..7eed795 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -55,7 +55,7 @@ parallel linuxJava7:{
                 withEnv(["PATH+MAVEN=$MAVEN_NIX_J7/bin","PATH+JDK=$JAVA_NIX_J7/bin"]) {
                     sh "mvn clean install -Prun-its -B -U -V -Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo -DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
                 }
-                junit allowEmptyResults: true, testResults:'**/target/*-reports/*.xml'
+                junit allowEmptyResults: true, testResults:'core-it-support/**/target/*-reports/*.xml core-it-suite/target/*-reports/*.xml'
             }
         }
     },linuxJava8: {
@@ -72,7 +72,7 @@ parallel linuxJava7:{
                 withEnv(["PATH+MAVEN=$MAVEN_NIX_J8/bin","PATH+JDK=$JAVA_NIX_J8/bin"]) {
                     sh "mvn clean install -Prun-its -B -U -V -Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo -DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
                 }
-                junit allowEmptyResults: true, testResults:'**/target/*-reports/*.xml'
+                junit allowEmptyResults: true, testResults:'core-it-support/**/target/*-reports/*.xml core-it-suite/target/*-reports/*.xml'
             }
         }
     }, winJava7: {
@@ -97,7 +97,7 @@ parallel linuxJava7:{
                     unstash 'dist'
                     bat "mvn clean install -Prun-its -B -U -V -Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo -DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
                 }
-                junit allowEmptyResults: true, testResults:'**/target/*-reports/*.xml'
+                junit allowEmptyResults: true, testResults:'core-it-support/**/target/*-reports/*.xml core-it-suite/target/*-reports/*.xml'
             }
         }
     }, winJava8: {
@@ -122,7 +122,7 @@ parallel linuxJava7:{
                     unstash 'dist'
                     bat "mvn clean install -Prun-its -B -U -V -Dmaven.test.failure.ignore=true -Dmaven.repo.local=$WORK_DIR/it-local-repo -DmavenDistro=$WORK_DIR/apache-maven-dist.zip"
                 }
-                junit allowEmptyResults: true, testResults:'**/target/*-reports/*.xml'
+                junit allowEmptyResults: true, testResults:'core-it-support/**/target/*-reports/*.xml core-it-suite/target/*-reports/*.xml'
             }
         }
     }