From commits-return-86645-archive-asf-public=cust-asf.ponee.io@hbase.apache.org Mon Jun 3 02:27:57 2019 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 [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id CD43C18064E for ; Mon, 3 Jun 2019 04:27:56 +0200 (CEST) Received: (qmail 40374 invoked by uid 500); 3 Jun 2019 02:27:56 -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 40365 invoked by uid 99); 3 Jun 2019 02:27:56 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Jun 2019 02:27:56 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 0469F8A836; Mon, 3 Jun 2019 02:27:56 +0000 (UTC) Date: Mon, 03 Jun 2019 02:27:55 +0000 To: "commits@hbase.apache.org" Subject: [hbase] branch branch-1.4 updated: HBASE-22507 Backport the pre commit changes in HBASE-22500 to all active branches MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <155952887540.15659.17053677368049282022@gitbox.apache.org> From: zhangduo@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: hbase X-Git-Refname: refs/heads/branch-1.4 X-Git-Reftype: branch X-Git-Oldrev: 8f60ed5a659d55b926fedc017cf72de3884163cf X-Git-Newrev: f000b55dc3f9e8172f3ca116887fd6fecb437112 X-Git-Rev: f000b55dc3f9e8172f3ca116887fd6fecb437112 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. zhangduo pushed a commit to branch branch-1.4 in repository https://gitbox.apache.org/repos/asf/hbase.git The following commit(s) were added to refs/heads/branch-1.4 by this push: new f000b55 HBASE-22507 Backport the pre commit changes in HBASE-22500 to all active branches f000b55 is described below commit f000b55dc3f9e8172f3ca116887fd6fecb437112 Author: zhangduo AuthorDate: Fri May 31 21:57:46 2019 +0800 HBASE-22507 Backport the pre commit changes in HBASE-22500 to all active branches Signed-off-by: Andrew Purtell --- dev-support/hbase-personality.sh | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh index aaf2441..9ec15ab 100755 --- a/dev-support/hbase-personality.sh +++ b/dev-support/hbase-personality.sh @@ -514,19 +514,26 @@ function hadoopcheck_rebuild if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then hbase_hadoop2_versions="2.8.5 2.9.2" else - hbase_hadoop2_versions="2.8.2 2.8.3 2.8.4 2.8.5 2.9.1 2.9.2" + hbase_hadoop2_versions="2.8.5 2.9.2" fi fi if [[ "${PATCH_BRANCH}" = branch-1* ]]; then yetus_info "Setting Hadoop 3 versions to test based on branch-1.x rules." hbase_hadoop3_versions="" - else - yetus_info "Setting Hadoop 3 versions to test based on branch-2.x/master/feature branch rules" + elif [[ "${PATCH_BRANCH}" = branch-2.0 ]] || [[ "${PATCH_BRANCH}" = branch-2.1 ]]; then + yetus_info "Setting Hadoop 3 versions to test based on branch-2.0/branch-2.1 rules" if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then hbase_hadoop3_versions="3.0.3 3.1.2" else hbase_hadoop3_versions="3.0.3 3.1.1 3.1.2" fi + else + yetus_info "Setting Hadoop 3 versions to test based on branch-2.2+/master/feature branch rules" + if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then + hbase_hadoop3_versions="3.1.2" + else + hbase_hadoop3_versions="3.1.1 3.1.2" + fi fi export MAVEN_OPTS="${MAVEN_OPTS}"