From commits-return-86688-archive-asf-public=cust-asf.ponee.io@hbase.apache.org Mon Jun 3 14:29:01 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 292EA180763 for ; Mon, 3 Jun 2019 16:29:01 +0200 (CEST) Received: (qmail 78333 invoked by uid 500); 3 Jun 2019 14:28:59 -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 78025 invoked by uid 99); 3 Jun 2019 14:28:59 -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 14:28:59 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id D12B08A886; Mon, 3 Jun 2019 14:28:58 +0000 (UTC) Date: Mon, 03 Jun 2019 14:28:59 +0000 To: "commits@hbase.apache.org" Subject: [hbase] branch branch-1.3 updated: HBASE-22518 yetus personality is treating branch-1.4 like earlier branches for hadoopcheck MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <155957213861.13455.18348310882893992965@gitbox.apache.org> From: busbey@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: hbase X-Git-Refname: refs/heads/branch-1.3 X-Git-Reftype: branch X-Git-Oldrev: 1e8fb2f883917ffe96c61dcc377c89a9bc39101c X-Git-Newrev: 493f3c44dc57623343ed5de35f5b347aedebb37c X-Git-Rev: 493f3c44dc57623343ed5de35f5b347aedebb37c 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. busbey pushed a commit to branch branch-1.3 in repository https://gitbox.apache.org/repos/asf/hbase.git The following commit(s) were added to refs/heads/branch-1.3 by this push: new 493f3c4 HBASE-22518 yetus personality is treating branch-1.4 like earlier branches for hadoopcheck 493f3c4 is described below commit 493f3c44dc57623343ed5de35f5b347aedebb37c Author: Sean Busbey AuthorDate: Sat Jun 1 02:03:28 2019 -0500 HBASE-22518 yetus personality is treating branch-1.4 like earlier branches for hadoopcheck Signed-off-by: Duo Zhang (cherry picked from commit b4d5a9a8e11720b27fd556d6c28bcfdbcad7d20d) --- 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 5c1d3e3..f248de2 100755 --- a/dev-support/hbase-personality.sh +++ b/dev-support/hbase-personality.sh @@ -484,13 +484,20 @@ function hadoopcheck_rebuild # All supported Hadoop versions that we want to test the compilation with # See the Hadoop section on prereqs in the HBase Reference Guide - if [[ "${PATCH_BRANCH}" = branch-1.* ]] && [[ "${PATCH_BRANCH#branch-1.}" -lt "5" ]]; then - yetus_info "Setting Hadoop 2 versions to test based on before-branch-1.5 rules." + if [[ "${PATCH_BRANCH}" = branch-1.* ]] && [[ "${PATCH_BRANCH#branch-1.}" -lt "4" ]]; then + yetus_info "Setting Hadoop 2 versions to test based on before-branch-1.4 rules." if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then hbase_hadoop2_versions="2.4.1 2.5.2 2.6.5 2.7.7" else hbase_hadoop2_versions="2.4.0 2.4.1 2.5.0 2.5.1 2.5.2 2.6.1 2.6.2 2.6.3 2.6.4 2.6.5 2.7.1 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7" fi + elif [[ "${PATCH_BRANCH}" = branch-1.4 ]]; then + yetus_info "Setting Hadoop 2 versions to test based on branch-1.4 rules." + if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then + hbase_hadoop2_versions="2.7.7" + else + hbase_hadoop2_versions="2.7.1 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7" + fi elif [[ "${PATCH_BRANCH}" = branch-2.0 ]]; then yetus_info "Setting Hadoop 2 versions to test based on branch-2.0 rules." if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then @@ -506,7 +513,7 @@ function hadoopcheck_rebuild hbase_hadoop2_versions="2.7.1 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 2.8.2 2.8.3 2.8.4 2.8.5" fi else - yetus_info "Setting Hadoop 2 versions to test based on branch-1.5+/branch-2.1+/master/feature branch rules." + yetus_info "Setting Hadoop 2 versions to test based on branch-1.5+/branch-2.2+/master/feature branch rules." if [[ "${QUICK_HADOOPCHECK}" == "true" ]]; then hbase_hadoop2_versions="2.8.5 2.9.2" else