From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.5 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B53ABC10DCE for ; Mon, 23 Mar 2020 20:00:24 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 74D2E20753 for ; Mon, 23 Mar 2020 20:00:23 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="Vts8gqdo" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 74D2E20753 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 22FDD1C0B1; Mon, 23 Mar 2020 21:00:10 +0100 (CET) Received: from us-smtp-delivery-74.mimecast.com (us-smtp-delivery-74.mimecast.com [216.205.24.74]) by dpdk.org (Postfix) with ESMTP id 9067B1C0B1 for ; Mon, 23 Mar 2020 21:00:08 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1584993608; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=y7uf4SildzMqe69zWZ+YU+20QZ/ten6q/RhiK4m9Ax4=; b=Vts8gqdoxPQVCKCpDnxFTnmnu5iZFrJ2o++tKXG8F1vrT8DT8cQITiGYsX/T+xfq10Kydf Q9d8Ug1XkZwHNDFCR5SEWtUR8s1LZ+K7rgA41CVn62ljRpXY+fdJjsEPaYmJftlt1vovJu CeroDiH2+c+zkecp1U8foL8dzzjOsv8= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-359-S_jPEDZmNxKn24iKslMGpw-1; Mon, 23 Mar 2020 16:00:05 -0400 X-MC-Unique: S_jPEDZmNxKn24iKslMGpw-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 4CB8C107ACC4; Mon, 23 Mar 2020 20:00:04 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.193.243]) by smtp.corp.redhat.com (Postfix) with ESMTP id 5688310016EB; Mon, 23 Mar 2020 20:00:01 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: aconole@redhat.com, ruifeng.wang@arm.com, maicolgabriel@hotmail.com, bruce.richardson@intel.com, Gavin Hu Date: Mon, 23 Mar 2020 20:59:26 +0100 Message-Id: <20200323195926.12182-6-david.marchand@redhat.com> In-Reply-To: <20200323195926.12182-1-david.marchand@redhat.com> References: <20200323195926.12182-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Subject: [dpdk-dev] [PATCH v4 5/5] ci: enable unit test for aarch64 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" From: Ruifeng Wang Add Travis CI jobs to run unit tests on aarch64 platform. Signed-off-by: Ruifeng Wang Reviewed-by: Gavin Hu Acked-by: Aaron Conole --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a57790ba83..fd4f79cfc6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -105,6 +105,9 @@ jobs: - env: DEF_LIB=3D"static" arch: arm64 compiler: gcc + - env: DEF_LIB=3D"shared" RUN_TESTS=3D1 + arch: arm64 + compiler: gcc - env: DEF_LIB=3D"shared" BUILD_DOCS=3D1 arch: arm64 compiler: gcc @@ -125,6 +128,6 @@ jobs: - env: DEF_LIB=3D"static" arch: arm64 compiler: clang - - env: DEF_LIB=3D"shared" + - env: DEF_LIB=3D"shared" RUN_TESTS=3D1 arch: arm64 compiler: clang --=20 2.23.0