From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 20D35A04B6; Fri, 11 Sep 2020 15:25:32 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 07ACBE07; Fri, 11 Sep 2020 15:25:32 +0200 (CEST) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-1.mimecast.com [205.139.110.61]) by dpdk.org (Postfix) with ESMTP id 0AF87160 for ; Fri, 11 Sep 2020 15:25:30 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1599830730; 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=hWhQK32Brc0RdouLeho/sM16f3+g9tZfSy3KUtYrsaE=; b=YDAYKyNitfTvQqyDJbe1YStA3jE6huAQIFgqQp8T2GYzzz+04C1Lpa/qdV86yCzOXLfJ5B hBDFUwL0N35N7XQ3KcYpu9+q9j/6kUZKdDDmTAGmHiGSxbJHUPr6gKG2z1ZXPe+bBkawt9 s5rXqTisE26asfOvf23x4DBUgtHm/x4= 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-160-xV7-SVmHMA2yHKQ-kqjcCQ-1; Fri, 11 Sep 2020 09:25:28 -0400 X-MC-Unique: xV7-SVmHMA2yHKQ-kqjcCQ-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 BADA71009456; Fri, 11 Sep 2020 13:25:26 +0000 (UTC) Received: from dhcp-25.97.bos.redhat.com (ovpn-114-150.rdu2.redhat.com [10.10.114.150]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 0F19D10013D9; Fri, 11 Sep 2020 13:25:22 +0000 (UTC) From: Aaron Conole To: Juraj =?utf-8?Q?Linke=C5=A1?= Cc: thomas@monjalon.net, david.marchand@redhat.com, maicolgabriel@hotmail.com, dev@dpdk.org References: <1598339315-8038-1-git-send-email-juraj.linkes@pantheon.tech> <1598615137-16401-1-git-send-email-juraj.linkes@pantheon.tech> Date: Fri, 11 Sep 2020 09:25:22 -0400 In-Reply-To: <1598615137-16401-1-git-send-email-juraj.linkes@pantheon.tech> ("Juraj \=\?utf-8\?Q\?Linke\=C5\=A1\=22's\?\= message of "Fri, 28 Aug 2020 13:45:37 +0200") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=aconole@redhat.com X-Mimecast-Spam-Score: 0.001 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-dev] [PATCH v2] ci: add vm jobs for aarch64 builds with tests 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" Juraj Linke=C5=A1 writes: > Tests requiring hugepages do not work outside of VM environment because > of security limitations. Add aarch64 builds which run tests to run in > a VM to avoid these limitations. Leave non-hugepage environments since > the tests may produce different results in hugepage and non-hugepage > environments. > > Signed-off-by: Juraj Linke=C5=A1 > --- I'm okay with the change, but I wonder - does it make sense to have the non-vm build around with these? The builds you're adding cover all the cases of the container build, and add the additional hugepage tests. Maybe we should drop the other tests? It can be a follow up patch, WDYT? Acked-by: Aaron Conole > .travis.yml | 12 ++++++++++++ > 1 file changed, 12 insertions(+) > > diff --git a/.travis.yml b/.travis.yml > index d6eeab371..5e12db23b 100644 > --- a/.travis.yml > +++ b/.travis.yml > @@ -90,6 +90,12 @@ jobs: > - env: DEF_LIB=3D"shared" RUN_TESTS=3D1 > arch: arm64 > compiler: gcc > + - env: DEF_LIB=3D"shared" RUN_TESTS=3D1 > + dist: focal > + arch: arm64-graviton2 > + virt: vm > + group: edge > + compiler: gcc > - env: DEF_LIB=3D"shared" BUILD_DOCS=3D1 > arch: arm64 > compiler: gcc > @@ -105,3 +111,9 @@ jobs: > - env: DEF_LIB=3D"shared" RUN_TESTS=3D1 > arch: arm64 > compiler: clang > + - env: DEF_LIB=3D"shared" RUN_TESTS=3D1 > + dist: focal > + arch: arm64-graviton2 > + virt: vm > + group: edge > + compiler: clang