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:43 UTC

[7/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/1b589302
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/1b589302
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/1b589302

Branch: refs/heads/branch-1.1
Commit: 1b589302537f2f80a3e18449709818409650637f
Parents: b069ed6
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:58:09 2017 -0500

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/1b589302/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index 4337f81..10438a4 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,