From 54497a88eb669d3ea03e1f8eac88a727f1f8e58d Mon Sep 17 00:00:00 2001 From: Sean Busbey Date: Mon, 30 Oct 2017 09:59:36 -0500 Subject: [PATCH] HBASE-19137 Nightly test should make junit reports optional rather than attempt archive after reporting. Signed-off-by: Mike Drob --- dev-support/Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile index 4337f817bb4..10438a414db 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,