You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bu...@apache.org on 2017/11/01 14:58:38 UTC

[2/7] hbase git commit: HBASE-19137 Nightly test should make junit reports optional rather than attempt archive after reporting.

HBASE-19137 Nightly test should make junit reports optional rather than attempt archive after reporting.

Signed-off-by: Mike Drob <md...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/5a941d8f
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/5a941d8f
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/5a941d8f

Branch: refs/heads/branch-2
Commit: 5a941d8f802a00944f1babf021498cdf14935576
Parents: 526d282
Author: Sean Busbey <bu...@apache.org>
Authored: Mon Oct 30 09:59:36 2017 -0500
Committer: Sean Busbey <bu...@apache.org>
Committed: Wed Nov 1 09:57:33 2017 -0500

----------------------------------------------------------------------
 dev-support/Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/5a941d8f/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index a8de038..d7faeb6 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -169,6 +169,7 @@ curl -L  -o personality.sh "${env.PROJET_PERSONALITY}"
       }
       post {
         always {
+          junit testResults: 'output-jdk7/**/target/**/TEST-*.xml', allowEmptyResults: true
           // zip surefire reports.
           sh '''#!/bin/bash -e
             if [ -d "${OUTPUTDIR}/archiver" ]; then
@@ -186,7 +187,6 @@ curl -L  -o personality.sh "${env.PROJET_PERSONALITY}"
           // env variables don't work in archive? or this has to be relative to WORKSPACE. :(
           archive 'output-jdk7/*'
           archive 'output-jdk7/**/*'
-          junit 'output-jdk7/**/target/**/TEST-*.xml'
           publishHTML target: [
             allowMissing: true,
             keepAll: true,
@@ -219,6 +219,7 @@ curl -L  -o personality.sh "${env.PROJET_PERSONALITY}"
       }
       post {
         always {
+          junit testResults: 'output-jdk8/**/target/**/TEST-*.xml', allowEmptyResults: true
           // zip surefire reports.
           sh '''#!/bin/bash -e
             if [ -d "${OUTPUTDIR}/archiver" ]; then
@@ -236,7 +237,6 @@ curl -L  -o personality.sh "${env.PROJET_PERSONALITY}"
           // env variables don't work in archive? or this has to be relative to WORKSPACE. :(
           archive 'output-jdk8/*'
           archive 'output-jdk8/**/*'
-          junit 'output-jdk8/**/target/**/TEST-*.xml'
           publishHTML target: [
             allowMissing: true,
             keepAll: true,