From patchwork Thu Dec 7 13:53:13 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Henry Wang X-Patchwork-Id: 13483323 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 757A9C4167B for ; Thu, 7 Dec 2023 13:53:49 +0000 (UTC) Received: from list by lists.xenproject.org with outflank-mailman.649872.1014925 (Exim 4.92) (envelope-from ) id 1rBEon-0002Mt-Bn; Thu, 07 Dec 2023 13:53:33 +0000 X-Outflank-Mailman: Message body and most headers restored to incoming version Received: by outflank-mailman (output) from mailman id 649872.1014925; Thu, 07 Dec 2023 13:53:33 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1rBEon-0002Mm-8r; Thu, 07 Dec 2023 13:53:33 +0000 Received: by outflank-mailman (input) for mailman id 649872; Thu, 07 Dec 2023 13:53:32 +0000 Received: from se1-gles-sth1-in.inumbo.com ([159.253.27.254] helo=se1-gles-sth1.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1rBEol-0002Al-Vd for xen-devel@lists.xenproject.org; Thu, 07 Dec 2023 13:53:31 +0000 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by se1-gles-sth1.inumbo.com (Halon) with ESMTP id 0072ce90-9508-11ee-98e7-6d05b1d4d9a1; Thu, 07 Dec 2023 14:53:30 +0100 (CET) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 92DA612FC; Thu, 7 Dec 2023 05:54:15 -0800 (PST) Received: from a015966.shanghai.arm.com (a015966.shanghai.arm.com [10.169.190.5]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id EB5D83F6C4; Thu, 7 Dec 2023 05:53:26 -0800 (PST) X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" X-Inumbo-ID: 0072ce90-9508-11ee-98e7-6d05b1d4d9a1 From: Henry Wang To: xen-devel@lists.xenproject.org Cc: Henry Wang , Doug Goldstein , Stefano Stabellini , Michal Orzel , Julien Grall , Bertrand Marquis , Wei Chen Subject: [PATCH 0/5] automation: Support running FVP Dom0 smoke test for Arm Date: Thu, 7 Dec 2023 21:53:13 +0800 Message-Id: <20231207135318.1912846-1-Henry.Wang@arm.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 This series adds the support for running FVP Dom0 smoke test for Arm on the Arm64 GitLab CI runner. Detailed changes please refer to the commit message of each commit. An example test pipeline with these patches applied (with the docker registry changed to my own registry and unrelated job removed) can be found at: https://gitlab.com/xen-project/people/henryw/xen/-/pipelines/1098531057 Henry Wang (5): automation: Add a Dockerfile for running FVP_Base jobs automation: Add the Dockerfile to build TF-A and U-Boot for FVP automation: Add the expect script with test case for FVP automation: Add the script for the FVP smoke test automation: Add the arm64 FVP build and Dom0 smoke test jobs .../debian/bookworm-arm64v8-fvp.dockerfile | 64 ++++++++++ automation/gitlab-ci/build.yaml | 17 +++ automation/gitlab-ci/test.yaml | 22 ++++ .../expect/fvp-base-smoke-dom0-arm64.exp | 73 +++++++++++ .../scripts/fvp-base-smoke-dom0-arm64.sh | 117 ++++++++++++++++++ .../2023.10-2.9.0-arm64v8.dockerfile | 48 +++++++ 6 files changed, 341 insertions(+) create mode 100644 automation/build/debian/bookworm-arm64v8-fvp.dockerfile create mode 100755 automation/scripts/expect/fvp-base-smoke-dom0-arm64.exp create mode 100755 automation/scripts/fvp-base-smoke-dom0-arm64.sh create mode 100644 automation/tests-artifacts/armfvp-uboot-tfa/2023.10-2.9.0-arm64v8.dockerfile