From commits-return-68656-archive-asf-public=cust-asf.ponee.io@hbase.apache.org Wed Feb 28 21:31:07 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 9582518077B for ; Wed, 28 Feb 2018 21:31:06 +0100 (CET) Received: (qmail 64177 invoked by uid 500); 28 Feb 2018 20:31:05 -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 63903 invoked by uid 99); 28 Feb 2018 20:31:05 -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, 28 Feb 2018 20:31:05 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D1C5EF4E49; Wed, 28 Feb 2018 20:31:04 +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, 28 Feb 2018 20:31:14 -0000 Message-Id: <592dcd75f8df4d4c98696443bf635237@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [11/11] hbase git commit: HBASE-15151 ensure findbugs check runs on all branches. HBASE-15151 ensure findbugs check runs on all branches. Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/d7a3f227 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/d7a3f227 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/d7a3f227 Branch: refs/heads/HBASE-15151 Commit: d7a3f2276b528307318f5bfa2308cfcc6043583b Parents: dd18ab6 Author: Sean Busbey Authored: Sun Feb 25 00:35:45 2018 -0600 Committer: Sean Busbey Committed: Wed Feb 28 14:30:34 2018 -0600 ---------------------------------------------------------------------- dev-support/Jenkinsfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/d7a3f227/dev-support/Jenkinsfile ---------------------------------------------------------------------- diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile index 00d0403..57d677a 100644 --- a/dev-support/Jenkinsfile +++ b/dev-support/Jenkinsfile @@ -255,7 +255,7 @@ curl -L -o personality.sh "${env.PROJECT_PERSONALITY}" } } environment { - TESTS = 'mvninstall,compile,javac,unit,htmlout' + TESTS = 'mvninstall,compile,javac,unit,findbugs,htmlout' OUTPUT_DIR_RELATIVE = "${env.OUTPUT_DIR_RELATIVE_HADOOP2}" OUTPUT_DIR = "${env.WORKSPACE}/${env.OUTPUT_DIR_RELATIVE_HADOOP2}" // This isn't strictly needed on branches that only support jdk8, but doesn't hurt @@ -327,10 +327,7 @@ curl -L -o personality.sh "${env.PROJECT_PERSONALITY}" } } environment { - // Failure in any stage fails the build and consecutive stages are not built. - // Findbugs is part of this last yetus stage to prevent findbugs precluding hadoop3 - // tests. - TESTS = 'mvninstall,compile,javac,unit,findbugs,htmlout' + TESTS = 'mvninstall,compile,javac,unit,htmlout' OUTPUT_DIR_RELATIVE = "${env.OUTPUT_DIR_RELATIVE_HADOOP3}" OUTPUT_DIR = "${env.WORKSPACE}/${env.OUTPUT_DIR_RELATIVE_HADOOP3}" // This isn't strictly needed on branches that only support jdk8, but doesn't hurt