public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Yao, Jiewen" <jiewen.yao@intel.com>
To: "Boeuf, Sebastien" <sebastien.boeuf@intel.com>,
	"devel@edk2.groups.io" <devel@edk2.groups.io>
Cc: "Justen, Jordan L" <jordan.l.justen@intel.com>,
	"kraxel@redhat.com" <kraxel@redhat.com>
Subject: Re: [PATCH v3 11/11] OvmfPkg: Add CloudHvX64 to the CI
Date: Tue, 11 Jan 2022 10:36:10 +0000	[thread overview]
Message-ID: <MW4PR11MB58723CDDC1B353BFF606A11C8C519@MW4PR11MB5872.namprd11.prod.outlook.com> (raw)
In-Reply-To: <c84bd8e2e962270846257d6a0d776a9fc732792e.1641894685.git.sebastien.boeuf@intel.com>

Acked-by: Jiewen Yao <Jiewen.yao@intel.com>

> -----Original Message-----
> From: Boeuf, Sebastien <sebastien.boeuf@intel.com>
> Sent: Tuesday, January 11, 2022 6:21 PM
> To: devel@edk2.groups.io
> Cc: Yao, Jiewen <jiewen.yao@intel.com>; Justen, Jordan L
> <jordan.l.justen@intel.com>; kraxel@redhat.com; Boeuf, Sebastien
> <sebastien.boeuf@intel.com>
> Subject: [PATCH v3 11/11] OvmfPkg: Add CloudHvX64 to the CI
> 
> From: Sebastien Boeuf <sebastien.boeuf@intel.com>
> 
> Adding the newly created target for Cloud Hypervisor to the CI,
> validating it can be properly built.
> 
> Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
> ---
>  .../.azurepipelines/Ubuntu-GCC5.yml           |  9 +++++
>  OvmfPkg/PlatformCI/CloudHvBuild.py            | 37 +++++++++++++++++++
>  2 files changed, 46 insertions(+)
>  create mode 100644 OvmfPkg/PlatformCI/CloudHvBuild.py
> 
> diff --git a/OvmfPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml
> b/OvmfPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml
> index 3fed8e0d06..6dec90d9fc 100644
> --- a/OvmfPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml
> +++ b/OvmfPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml
> @@ -133,6 +133,15 @@ jobs:
>              Run.Flags: "QEMU_SKIP=TRUE"
> 
>              Run: $(should_run)
> 
> 
> 
> +          CLOUDHV_X64_DEBUG:
> 
> +            Build.File: "$(package)/PlatformCI/CloudHvBuild.py"
> 
> +            Build.Arch: "X64"
> 
> +            Build.Flags: ""
> 
> +            Build.Target: "DEBUG"
> 
> +            # this build is for cloud-hypervisor not qemu-kvm
> 
> +            Run.Flags: "QEMU_SKIP=TRUE"
> 
> +            Run: $(should_run)
> 
> +
> 
>            MICROVM_X64_DEBUG:
> 
>              Build.File: "$(package)/PlatformCI/MicrovmBuild.py"
> 
>              Build.Arch: "X64"
> 
> diff --git a/OvmfPkg/PlatformCI/CloudHvBuild.py
> b/OvmfPkg/PlatformCI/CloudHvBuild.py
> new file mode 100644
> index 0000000000..5004222226
> --- /dev/null
> +++ b/OvmfPkg/PlatformCI/CloudHvBuild.py
> @@ -0,0 +1,37 @@
> +# @file
> 
> +# Script to Build OVMF UEFI firmware
> 
> +#
> 
> +# Copyright (c) Microsoft Corporation.
> 
> +# SPDX-License-Identifier: BSD-2-Clause-Patent
> 
> +##
> 
> +import os
> 
> +import sys
> 
> +
> 
> +sys.path.append(os.path.dirname(os.path.abspath(__file__)))
> 
> +from PlatformBuildLib import SettingsManager
> 
> +from PlatformBuildLib import PlatformBuilder
> 
> +
> 
> +    #
> #################################################################
> ###################### #
> 
> +    #                                Common Configuration                                     #
> 
> +    #
> #################################################################
> ###################### #
> 
> +class CommonPlatform():
> 
> +    ''' Common settings for this platform.  Define static data here and use
> 
> +        for the different parts of stuart
> 
> +    '''
> 
> +    PackagesSupported = ("OvmfPkg",)
> 
> +    ArchSupported = ("X64",)
> 
> +    TargetsSupported = ("DEBUG", "RELEASE", "NOOPT")
> 
> +    Scopes = ('ovmf', 'edk2-build')
> 
> +    WorkspaceRoot = os.path.realpath(os.path.join(
> 
> +        os.path.dirname(os.path.abspath(__file__)), "..", ".."))
> 
> +
> 
> +    @classmethod
> 
> +    def GetDscName(cls, ArchCsv: str) -> str:
> 
> +        ''' return the DSC given the architectures requested.
> 
> +
> 
> +        ArchCsv: csv string containing all architectures to build
> 
> +        '''
> 
> +        return "CloudHv/CloudHvX64.dsc"
> 
> +
> 
> +import PlatformBuildLib
> 
> +PlatformBuildLib.CommonPlatform = CommonPlatform
> \ No newline at end of file
> --
> 2.30.2


  reply	other threads:[~2022-01-11 10:36 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-11 10:20 [PATCH v3 00/11] Create new target for Cloud Hypervisor Boeuf, Sebastien
2022-01-11 10:20 ` [PATCH v3 01/11] OvmfPkg/CloudHv: Add " Boeuf, Sebastien
2022-01-11 10:20 ` [PATCH v3 02/11] OvmfPkg/CloudHv: Replace legacy 8254 PIT with local APIC timer Boeuf, Sebastien
2022-01-11 10:20 ` [PATCH v3 03/11] OvmfPkg/CloudHv: Connect serial console Boeuf, Sebastien
2022-01-11 10:35   ` Yao, Jiewen
2022-01-11 10:20 ` [PATCH v3 04/11] OvmfPkg/CloudHv: Remove legacy 8259 PIC support Boeuf, Sebastien
2022-01-11 10:20 ` [PATCH v3 05/11] OvmfPkg/CloudHv: Remove Q35 specifics Boeuf, Sebastien
2022-01-11 10:20 ` [PATCH v3 06/11] OvmfPkg/CloudHv: Reduce dependency on QemuFwCfg Boeuf, Sebastien
2022-01-11 10:20 ` [PATCH v3 07/11] OvmfPkg/CloudHv: Remove video support Boeuf, Sebastien
2022-01-11 10:20 ` [PATCH v3 08/11] OvmfPkg/CloudHv: Remove USB support Boeuf, Sebastien
2022-01-11 10:20 ` [PATCH v3 09/11] OvmfPkg/CloudHv: Remove CSM support Boeuf, Sebastien
2022-01-11 10:20 ` [PATCH v3 10/11] OvmfPkg/CloudHv: add Maintainers.txt entry Boeuf, Sebastien
2022-01-11 10:35   ` [edk2-devel] " Yao, Jiewen
2022-01-11 10:20 ` [PATCH v3 11/11] OvmfPkg: Add CloudHvX64 to the CI Boeuf, Sebastien
2022-01-11 10:36   ` Yao, Jiewen [this message]
2022-01-11 12:14 ` [PATCH v3 00/11] Create new target for Cloud Hypervisor Gerd Hoffmann

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=MW4PR11MB58723CDDC1B353BFF606A11C8C519@MW4PR11MB5872.namprd11.prod.outlook.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox