Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id ED80C200D51 for ; Wed, 1 Nov 2017 15:58:39 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id EC557160BE6; Wed, 1 Nov 2017 14:58:39 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 4841A160BFB for ; Wed, 1 Nov 2017 15:58:39 +0100 (CET) Received: (qmail 92161 invoked by uid 500); 1 Nov 2017 14:58:38 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 91861 invoked by uid 99); 1 Nov 2017 14:58:38 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Nov 2017 14:58:38 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 87046E01EC; Wed, 1 Nov 2017 14:58:37 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: busbey@apache.org To: commits@hbase.apache.org Date: Wed, 01 Nov 2017 14:58:41 -0000 Message-Id: <9539a5d9fd7c4ad4b0d723ce711388ed@git.apache.org> In-Reply-To: <0f08954bb0554fb399533da7fdfe8c05@git.apache.org> References: <0f08954bb0554fb399533da7fdfe8c05@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [5/7] hbase git commit: HBASE-19137 Nightly test should make junit reports optional rather than attempt archive after reporting. archived-at: Wed, 01 Nov 2017 14:58:40 -0000 HBASE-19137 Nightly test should make junit reports optional rather than attempt archive after reporting. Signed-off-by: Mike Drob Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/424d9620 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/424d9620 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/424d9620 Branch: refs/heads/branch-1.3 Commit: 424d9620758154a1f101f47ff1fb45499952a338 Parents: 1b6d6ab Author: Sean Busbey Authored: Mon Oct 30 09:59:36 2017 -0500 Committer: Sean Busbey Committed: Wed Nov 1 09:57:56 2017 -0500 ---------------------------------------------------------------------- dev-support/Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/424d9620/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,