public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Michael Kubacki" <michael.kubacki@outlook.com>
To: devel@edk2.groups.io
Cc: Andrew Fish <afish@apple.com>,
	Ard Biesheuvel <ard.biesheuvel@arm.com>,
	Bret Barkelew <Bret.Barkelew@microsoft.com>,
	Jordan Justen <jordan.l.justen@intel.com>,
	Laszlo Ersek <lersek@redhat.com>,
	Leif Lindholm <leif@nuviainc.com>,
	Liming Gao <liming.gao@intel.com>,
	Michael D Kinney <michael.d.kinney@intel.com>,
	Ray Ni <ray.ni@intel.com>,
	Sean Brogan <sean.brogan@microsoft.com>
Subject: [PATCH v1 0/6] Edk2 Platform and Core CI for ArmVirtPkg, EmulatorPkg, and OvmfPkg
Date: Wed,  8 Apr 2020 11:13:21 -0700	[thread overview]
Message-ID: <MWHPR07MB34409FA39111F6482BB61D22E9C00@MWHPR07MB3440.namprd07.prod.outlook.com> (raw)

From: Michael Kubacki <michael.kubacki@microsoft.com>

The following 6 patches adds support for "Platform CI" for ArmVirtPkg,
OvmfPkg, and EmulatorPkg.

Each readme has live status and links to the builds as well as details
of how to build and run the same way the CI server will.

ArmVirtPkg:
https://github.com/spbrogan/edk2/blob/PlatformAndCoreCIForOvmfArmVirtEmulatorPackages_v5/ArmVirtPkg/README-pytools.md

EmulatorPkg:
https://github.com/spbrogan/edk2/blob/PlatformAndCoreCIForOvmfArmVirtEmulatorPackages_v5/EmulatorPkg/README-pytools.md

OvmfPkg:
https://github.com/spbrogan/edk2/blob/PlatformAndCoreCIForOvmfArmVirtEmulatorPackages_v5/OvmfPkg/README-pytools.md

The patch set also adds ArmVirtPkg, OvmfPkg, and EmulatorPkg to Core CI for
the code evaluation tests (not compiling). Details of those tests are here:
https://github.com/spbrogan/edk2/tree/PlatformAndCoreCIForOvmfArmVirtEmulatorPackages_v5/.pytool

Branch can be reviewed here: https://github.com/spbrogan/edk2/tree/PlatformAndCoreCIForOvmfArmVirtEmulatorPackages_v5

Please send feedback to the mailing list and do not leave feedback directly
on github.

On a separate note, shallow threading might not work on this patch series
due to changes made by the SMTP server. Please bear with me while I am
investigating if this can be changed.

Cc: Andrew Fish <afish@apple.com>
Cc: Ard Biesheuvel <ard.biesheuvel@arm.com>
Cc: Bret Barkelew <Bret.Barkelew@microsoft.com>
Cc: Jordan Justen <jordan.l.justen@intel.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Cc: Leif Lindholm <leif@nuviainc.com>
Cc: Liming Gao <liming.gao@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Sean Brogan <sean.brogan@microsoft.com>
Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>

Sean Brogan (6):
  .azurepipelines: Add Platform CI template
  ArmVirtPkg: Add Platform CI and configuration for Core CI
  EmulatorPkg: Add Platform CI and configuration for Core CI
  OvmfPkg: Add Platform CI and configuration for Core CI
  .pytool: Update CI Settings to support Emulator, ArmVirt, and Ovmf
    packages
  .azurepipelines: Update Core CI build matrix to include platforms

 .azurepipelines/ReadMe.md                              |  50 ++++
 .azurepipelines/templates/ReadMe.md                    |  59 +++++
 .azurepipelines/templates/platform-build-run-steps.yml | 134 ++++++++++
 .azurepipelines/templates/pr-gate-build-job.yml        |   5 +
 .pytool/CISettings.py                                  |   7 +-
 .pytool/Plugin/SpellCheck/cspell.base.yaml             |  14 ++
 .pytool/Readme.md                                      |  10 +-
 ArmVirtPkg/.azurepipelines/Ubuntu-GCC5.yml             |  89 +++++++
 ArmVirtPkg/ArmVirtPkg.ci.yaml                          | 103 ++++++++
 ArmVirtPkg/PlatformBuild.py                            | 263 ++++++++++++++++++++
 ArmVirtPkg/README-pytools.md                           | 123 +++++++++
 ArmVirtPkg/iasl_ext_dep.yaml                           |  21 ++
 EmulatorPkg/.azurepipelines/Ubuntu-GCC5.yml            |  95 +++++++
 EmulatorPkg/.azurepipelines/Windows-VS2019.yml         |  85 +++++++
 EmulatorPkg/EmulatorPkg.ci.yaml                        |  85 +++++++
 EmulatorPkg/PlatformBuild.py                           | 252 +++++++++++++++++++
 EmulatorPkg/README-pytools.md                          | 173 +++++++++++++
 OvmfPkg/.azurepipelines/Ubuntu-GCC5.yml                | 133 ++++++++++
 OvmfPkg/.azurepipelines/Windows-VS2019.yml             | 138 ++++++++++
 OvmfPkg/OvmfPkg.ci.yaml                                |  83 ++++++
 OvmfPkg/PlatformBuild.py                               | 242 ++++++++++++++++++
 OvmfPkg/README-pytools.md                              | 238 ++++++++++++++++++
 OvmfPkg/iasl_ext_dep.yaml                              |  21 ++
 23 files changed, 2415 insertions(+), 8 deletions(-)
 create mode 100644 .azurepipelines/ReadMe.md
 create mode 100644 .azurepipelines/templates/ReadMe.md
 create mode 100644 .azurepipelines/templates/platform-build-run-steps.yml
 create mode 100644 ArmVirtPkg/.azurepipelines/Ubuntu-GCC5.yml
 create mode 100644 ArmVirtPkg/ArmVirtPkg.ci.yaml
 create mode 100644 ArmVirtPkg/PlatformBuild.py
 create mode 100644 ArmVirtPkg/README-pytools.md
 create mode 100644 ArmVirtPkg/iasl_ext_dep.yaml
 create mode 100644 EmulatorPkg/.azurepipelines/Ubuntu-GCC5.yml
 create mode 100644 EmulatorPkg/.azurepipelines/Windows-VS2019.yml
 create mode 100644 EmulatorPkg/EmulatorPkg.ci.yaml
 create mode 100644 EmulatorPkg/PlatformBuild.py
 create mode 100644 EmulatorPkg/README-pytools.md
 create mode 100644 OvmfPkg/.azurepipelines/Ubuntu-GCC5.yml
 create mode 100644 OvmfPkg/.azurepipelines/Windows-VS2019.yml
 create mode 100644 OvmfPkg/OvmfPkg.ci.yaml
 create mode 100644 OvmfPkg/PlatformBuild.py
 create mode 100644 OvmfPkg/README-pytools.md
 create mode 100644 OvmfPkg/iasl_ext_dep.yaml

-- 
2.16.3.windows.1


             reply	other threads:[~2020-04-08 18:13 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-08 18:13 Michael Kubacki [this message]
2020-04-14  8:31 ` [edk2-devel] [PATCH v1 0/6] Edk2 Platform and Core CI for ArmVirtPkg, EmulatorPkg, and OvmfPkg Zhang, Shenglei
2020-04-15  6:51   ` Sean
2020-04-15  7:13     ` Zhang, Shenglei
2020-04-15 16:15       ` Sean
2020-04-15 20:22         ` Rebecca Cran
2020-04-15 20:44           ` Sean
2020-04-15 21:08             ` Rebecca Cran
2020-04-15 21:14               ` Sean
2020-04-17  7:39 ` Zhang, Shenglei

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=MWHPR07MB34409FA39111F6482BB61D22E9C00@MWHPR07MB3440.namprd07.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