From patchwork Fri Aug 28 11:45:37 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Juraj_Linke=C5=A1?= X-Patchwork-Id: 76136 X-Patchwork-Delegate: david.marchand@redhat.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id ACC21A04B1; Fri, 28 Aug 2020 13:45:42 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9DE7F1C127; Fri, 28 Aug 2020 13:45:41 +0200 (CEST) Received: from lb.pantheon.sk (lb.pantheon.sk [46.229.239.20]) by dpdk.org (Postfix) with ESMTP id 5FE801C126 for ; Fri, 28 Aug 2020 13:45:40 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by lb.pantheon.sk (Postfix) with ESMTP id 9DB99970AE; Fri, 28 Aug 2020 13:45:39 +0200 (CEST) X-Virus-Scanned: amavisd-new at siecit.sk Received: from lb.pantheon.sk ([127.0.0.1]) by localhost (lb.pantheon.sk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gDZaJKsk-ZY4; Fri, 28 Aug 2020 13:45:38 +0200 (CEST) Received: from service-node1.lab.pantheon.local (unknown [46.229.239.141]) by lb.pantheon.sk (Postfix) with ESMTP id F0CF3970A8; Fri, 28 Aug 2020 13:45:37 +0200 (CEST) From: =?utf-8?q?Juraj_Linke=C5=A1?= To: thomas@monjalon.net, david.marchand@redhat.com, aconole@redhat.com, maicolgabriel@hotmail.com Cc: dev@dpdk.org, =?utf-8?q?Juraj_Linke=C5=A1?= Date: Fri, 28 Aug 2020 13:45:37 +0200 Message-Id: <1598615137-16401-1-git-send-email-juraj.linkes@pantheon.tech> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1598339315-8038-1-git-send-email-juraj.linkes@pantheon.tech> References: <1598339315-8038-1-git-send-email-juraj.linkes@pantheon.tech> MIME-Version: 1.0 Subject: [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" 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š Reviewed-by: Ruifeng Wang Acked-by: Aaron Conole Reviewed-by: Ruifeng Wang 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="shared" RUN_TESTS=1 arch: arm64 compiler: gcc + - env: DEF_LIB="shared" RUN_TESTS=1 + dist: focal + arch: arm64-graviton2 + virt: vm + group: edge + compiler: gcc - env: DEF_LIB="shared" BUILD_DOCS=1 arch: arm64 compiler: gcc @@ -105,3 +111,9 @@ jobs: - env: DEF_LIB="shared" RUN_TESTS=1 arch: arm64 compiler: clang + - env: DEF_LIB="shared" RUN_TESTS=1 + dist: focal + arch: arm64-graviton2 + virt: vm + group: edge + compiler: clang