From commits-return-8622-archive-asf-public=cust-asf.ponee.io@zookeeper.apache.org Thu Dec 31 08:46:33 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mxout1-he-de.apache.org (mxout1-he-de.apache.org [95.216.194.37]) by mx-eu-01.ponee.io (Postfix) with ESMTPS id 9A6DA180638 for ; Thu, 31 Dec 2020 09:46:33 +0100 (CET) Received: from mail.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by mxout1-he-de.apache.org (ASF Mail Server at mxout1-he-de.apache.org) with SMTP id 0AE10668E9 for ; Thu, 31 Dec 2020 08:46:32 +0000 (UTC) Received: (qmail 24533 invoked by uid 500); 31 Dec 2020 08:46:31 -0000 Mailing-List: contact commits-help@zookeeper.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@zookeeper.apache.org Delivered-To: mailing list commits@zookeeper.apache.org Received: (qmail 24519 invoked by uid 99); 31 Dec 2020 08:46:31 -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; Thu, 31 Dec 2020 08:46:31 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id A850481F9F; Thu, 31 Dec 2020 08:46:31 +0000 (UTC) Date: Thu, 31 Dec 2020 08:46:31 +0000 To: "commits@zookeeper.apache.org" Subject: [zookeeper] branch master updated: ZOOKEEPER-3919: Added ARM64 support to Travis-CI MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <160940439150.15183.4565114707756470487@gitbox.apache.org> From: eolivelli@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: zookeeper X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: a67272a0ad8b1138c61306a02563fc39a0c79101 X-Git-Newrev: 701e134dfba721356deac1a20aa80e94ec80484a X-Git-Rev: 701e134dfba721356deac1a20aa80e94ec80484a 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. eolivelli pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/zookeeper.git The following commit(s) were added to refs/heads/master by this push: new 701e134 ZOOKEEPER-3919: Added ARM64 support to Travis-CI 701e134 is described below commit 701e134dfba721356deac1a20aa80e94ec80484a Author: odidev AuthorDate: Thu Dec 31 09:46:09 2020 +0100 ZOOKEEPER-3919: Added ARM64 support to Travis-CI 1. Added ARM64 support with jdk 11 2. Installed maven if architecture is ARM64 Signed-off-by: odidev Author: odidev Reviewers: Enrico Olivelli, Damien Diederen , Christopher Tubbs, Martin Grigorov Closes #1433 from odidev/zookeeper_ARM64 --- .travis.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.travis.yml b/.travis.yml index 8fbd931..4401b55 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,9 @@ matrix: - os: linux jdk: openjdk11 - os: linux + arch: arm64 + jdk: openjdk11 + - os: linux arch: s390x jdk: openjdk11 addons: @@ -25,6 +28,11 @@ addons: packages: - libcppunit-dev +install: + - if [ "${TRAVIS_CPU_ARCH}" == "arm64" ]; then + sudo apt-get install maven; + fi + script: mvn clean apache-rat:check verify -DskipTests spotbugs:check checkstyle:check -Pfull-build branches: