* [PATCH v2 0/6] Edk2 Platform and Core CI for ArmVirtPkg, EmulatorPkg, and OvmfPkg @ 2020-04-20 19:12 Michael Kubacki 2020-04-21 14:18 ` Laszlo Ersek 2020-04-24 20:22 ` [EXTERNAL] " Bret Barkelew 0 siblings, 2 replies; 8+ messages in thread From: Michael Kubacki @ 2020-04-20 19:12 UTC (permalink / raw) To: devel Cc: Andrew Fish, Ard Biesheuvel, Bret Barkelew, Jordan Justen, Laszlo Ersek, Leif Lindholm, Liming Gao, Michael D Kinney, Ray Ni, Sean Brogan 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_v9/ArmVirtPkg/ReadMe.rst EmulatorPkg: https://github.com/spbrogan/edk2/blob/PlatformAndCoreCIForOvmfArmVirtEmulatorPackages_v9/EmulatorPkg/README.rst OvmfPkg: https://github.com/spbrogan/edk2/blob/PlatformAndCoreCIForOvmfArmVirtEmulatorPackages_v9/OvmfPkg/README.rst 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_v9/.pytool Changes for V2: * PlatformBuild.py, iasl dependency, and azurepipeline files have been moved into a PlatformCI folder within the respective package. * PlatformBuild.py - RequiredSubmodules function configured to read from edk2 .gitmodules to lower required updates. * ReadMe files have been switched to reStructuredText to make Build Status table less distracting when viewing plaintext. Branch: https://github.com/spbrogan/edk2/tree/PlatformAndCoreCIForOvmfArmVirtEmulatorPackages_v9 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: 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/ArmVirtPkg.ci.yaml | 103 ++++++++ ArmVirtPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml | 89 +++++++ ArmVirtPkg/PlatformCI/PlatformBuild.py | 276 ++++++++++++++++++++ ArmVirtPkg/PlatformCI/iasl_ext_dep.yaml | 21 ++ ArmVirtPkg/ReadMe.rst | 139 ++++++++++ EmulatorPkg/EmulatorPkg.ci.yaml | 85 ++++++ EmulatorPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml | 95 +++++++ EmulatorPkg/PlatformCI/.azurepipelines/Windows-VS2019.yml | 85 ++++++ EmulatorPkg/PlatformCI/PlatformBuild.py | 272 +++++++++++++++++++ EmulatorPkg/README.rst | 175 +++++++++++++ OvmfPkg/OvmfPkg.ci.yaml | 83 ++++++ OvmfPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml | 133 ++++++++++ OvmfPkg/PlatformCI/.azurepipelines/Windows-VS2019.yml | 138 ++++++++++ OvmfPkg/PlatformCI/PlatformBuild.py | 254 ++++++++++++++++++ OvmfPkg/PlatformCI/iasl_ext_dep.yaml | 21 ++ OvmfPkg/README.rst | 211 +++++++++++++++ 23 files changed, 2451 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/ArmVirtPkg.ci.yaml create mode 100644 ArmVirtPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml create mode 100644 ArmVirtPkg/PlatformCI/PlatformBuild.py create mode 100644 ArmVirtPkg/PlatformCI/iasl_ext_dep.yaml create mode 100644 ArmVirtPkg/ReadMe.rst create mode 100644 EmulatorPkg/EmulatorPkg.ci.yaml create mode 100644 EmulatorPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml create mode 100644 EmulatorPkg/PlatformCI/.azurepipelines/Windows-VS2019.yml create mode 100644 EmulatorPkg/PlatformCI/PlatformBuild.py create mode 100644 EmulatorPkg/README.rst create mode 100644 OvmfPkg/OvmfPkg.ci.yaml create mode 100644 OvmfPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml create mode 100644 OvmfPkg/PlatformCI/.azurepipelines/Windows-VS2019.yml create mode 100644 OvmfPkg/PlatformCI/PlatformBuild.py create mode 100644 OvmfPkg/PlatformCI/iasl_ext_dep.yaml create mode 100644 OvmfPkg/README.rst -- 2.16.3.windows.1 ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2 0/6] Edk2 Platform and Core CI for ArmVirtPkg, EmulatorPkg, and OvmfPkg 2020-04-20 19:12 [PATCH v2 0/6] Edk2 Platform and Core CI for ArmVirtPkg, EmulatorPkg, and OvmfPkg Michael Kubacki @ 2020-04-21 14:18 ` Laszlo Ersek 2020-04-23 0:45 ` [EXTERNAL] " Sean 2020-04-24 20:22 ` [EXTERNAL] " Bret Barkelew 1 sibling, 1 reply; 8+ messages in thread From: Laszlo Ersek @ 2020-04-21 14:18 UTC (permalink / raw) To: michael.kubacki, devel Cc: Andrew Fish, Ard Biesheuvel, Bret Barkelew, Jordan Justen, Leif Lindholm, Liming Gao, Michael D Kinney, Ray Ni, Sean Brogan On 04/20/20 21:12, michael.kubacki@outlook.com wrote: > ArmVirtPkg/ReadMe.rst | 139 ++++++++++ > EmulatorPkg/README.rst | 175 +++++++++++++ > OvmfPkg/README.rst | 211 +++++++++++++++ I made a mistake -- I apologize. * In my email here (two links to the same message): http://mid.mail-archive.com/061ab841-33fb-b46f-a9e7-1b5ce0d2e2f4@redhat.com https://edk2.groups.io/g/devel/message/57468 I gladly accepted the option offered by Sean that we put the CI-specific README files (for at least OvmfPkg and ArmVirtPkg) under the PlatformCI subdirectory. Quote: On 04/16/20 16:51, Laszlo Ersek wrote: > On 04/15/20 22:38, sean.brogan via [] wrote: >> If that isn't desirable i would at least suggest we change the title >> to just ReadMe.md so that GitHub shows it by default when the >> PaltformCI folder is viewed form the web or in editor like vscode. > > This sounds 100% viable and great to me. I didn't expect this could > work! (I'm generally unaware of the readme filename patterns, and > locations, that github.com recognizes; sorry about that.) Having an > "unadorned" ReadMe.md file under PlatformCI is just perfect. > > So if I understand correctly, we could choose: > > ArmVirtPkg/ArmVirtPkg.ci.yaml > ArmVirtPkg/PlatformCI/PlatformBuild.py > ArmVirtPkg/PlatformCI/ReadMe.md > ArmVirtPkg/PlatformCI/Ubuntu-GCC5.yml > ArmVirtPkg/PlatformCI/iasl_ext_dep.yaml > > Do I understand right? > > Because, I'd find this great! Back then, the format for the readme was assumed MD, but that wasn't the main topic -- the main topic was the directory layout. * Then, when the MD vs. RST format question came up, I checked the RST format (the *contents*), and I was happy with it. My email (two links again): http://mid.mail-archive.com/1be6a25d-06e2-4109-8acf-0fe82d150af4@redhat.com https://edk2.groups.io/g/devel/message/57611 *However*, unfortunately, when looking at the RST format improvements, I missed that Sean implemented the RST files directly in the package root directories; and *not* under the PlatformCI directory. I'm very sorry for missing that -- I assumed that the text files were under PlatformCI like I had requested / agreed earlier, and I didn't realize from the URLs that Sean pasted that this wasn't the case. So, I have two observations / requests: (1) The three RST file names are capitalized differently (two use ALL CAPS, one uses CamelCase), before the .rst suffix. Please stick with one style. (2) I'd really like these RST text files to be moved under the respective PlatformCI directories. (My understanding is, from Sean's message quoted above, that this is possible, and github can display it well when the user browses the PlatformCI directory in a web browser.) With those updates, for the OvmfPkg and ArmVirtPkg patches: Acked-by: Laszlo Ersek <lersek@redhat.com> Thanks! Laszlo ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [EXTERNAL] Re: [PATCH v2 0/6] Edk2 Platform and Core CI for ArmVirtPkg, EmulatorPkg, and OvmfPkg 2020-04-21 14:18 ` Laszlo Ersek @ 2020-04-23 0:45 ` Sean 2020-04-23 1:08 ` Bret Barkelew ` (2 more replies) 0 siblings, 3 replies; 8+ messages in thread From: Sean @ 2020-04-23 0:45 UTC (permalink / raw) To: Laszlo Ersek, michael.kubacki@outlook.com, devel@edk2.groups.io Cc: Andrew Fish, Ard Biesheuvel, Bret Barkelew, Jordan Justen, Leif Lindholm, Liming Gao, Kinney, Michael D, Ray Ni I was hoping that because it wasn't "HTML tag soup" that build status could be front and center in the package readme as I find that more in line with expectations on github based projects. Nesting it deeper in the package just means less people find it when looking at your package. But I could see a few ways to solve it so I am looking for feedback and alignment before doing anything else. Option 1. 1. Add the Platform CI build status for the three platforms to the Edk2 repo readme since these are platforms in edk2 this makes sense and brings the most visibility to their status and the existence of the builds. 2. Convert edk2 repo readme to RST so it avoids "HTML tag soup" 3. Move the remaining part of the OvmfPkg/Readme.rst file into OvmfPkg/PlatformCI/Readme.md (I prefer MD when not doing large tables of links as it is easier to write and slightly easier to read as plain text). 4. Do step 3 for ArmVirtPkg and EmulatorPkg too Option 2. 1. Leave the ReadMe.rst at the root of each package but only include the build status table and add a link to the PlatformCi/ReadMe.md 2. Move the Pytool and Platform CI focused readme contents to PlatformCI/ReadMe.md Option 3. Something else. Finally does anyone have a strong preference for ReadMe vs README vs readme vs Readme vs ReAdMe? I see a mix of these in the edk2 code tree. Thanks Sean -----Original Message----- From: Laszlo Ersek <lersek@redhat.com> Sent: Tuesday, April 21, 2020 7:18 AM To: michael.kubacki@outlook.com; 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>; Leif Lindholm <leif@nuviainc.com>; Liming Gao <liming.gao@intel.com>; Kinney, Michael D <michael.d.kinney@intel.com>; Ray Ni <ray.ni@intel.com>; Sean Brogan <sean.brogan@microsoft.com> Subject: [EXTERNAL] Re: [PATCH v2 0/6] Edk2 Platform and Core CI for ArmVirtPkg, EmulatorPkg, and OvmfPkg On 04/20/20 21:12, michael.kubacki@outlook.com wrote: > ArmVirtPkg/ReadMe.rst | 139 ++++++++++ > EmulatorPkg/README.rst | 175 +++++++++++++ > OvmfPkg/README.rst | 211 +++++++++++++++ I made a mistake -- I apologize. * In my email here (two links to the same message): https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fmid.mail-archive.com%2F061ab841-33fb-b46f-a9e7-1b5ce0d2e2f4%40redhat.com&data=02%7C01%7Csean.brogan%40microsoft.com%7C4ceccc8b356a4ccb1c0908d7e5fed61c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637230754994306472&sdata=8O9sO1da5nWLTieoA%2FH%2BOPIonp1rf3L07lQ3L4p9Ybg%3D&reserved=0 https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fedk2.groups.io%2Fg%2Fdevel%2Fmessage%2F57468&data=02%7C01%7Csean.brogan%40microsoft.com%7C4ceccc8b356a4ccb1c0908d7e5fed61c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637230754994306472&sdata=U5N9NtRGiWf58I3F2NMcEe0vypkZuFlsCPQNnRjDCR8%3D&reserved=0 I gladly accepted the option offered by Sean that we put the CI-specific README files (for at least OvmfPkg and ArmVirtPkg) under the PlatformCI subdirectory. Quote: On 04/16/20 16:51, Laszlo Ersek wrote: > On 04/15/20 22:38, sean.brogan via [] wrote: >> If that isn't desirable i would at least suggest we change the title >> to just ReadMe.md so that GitHub shows it by default when the >> PaltformCI folder is viewed form the web or in editor like vscode. > > This sounds 100% viable and great to me. I didn't expect this could > work! (I'm generally unaware of the readme filename patterns, and > locations, that github.com recognizes; sorry about that.) Having an > "unadorned" ReadMe.md file under PlatformCI is just perfect. > > So if I understand correctly, we could choose: > > ArmVirtPkg/ArmVirtPkg.ci.yaml > ArmVirtPkg/PlatformCI/PlatformBuild.py > ArmVirtPkg/PlatformCI/ReadMe.md > ArmVirtPkg/PlatformCI/Ubuntu-GCC5.yml > ArmVirtPkg/PlatformCI/iasl_ext_dep.yaml > > Do I understand right? > > Because, I'd find this great! Back then, the format for the readme was assumed MD, but that wasn't the main topic -- the main topic was the directory layout. * Then, when the MD vs. RST format question came up, I checked the RST format (the *contents*), and I was happy with it. My email (two links again): https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fmid.mail-archive.com%2F1be6a25d-06e2-4109-8acf-0fe82d150af4%40redhat.com&data=02%7C01%7Csean.brogan%40microsoft.com%7C4ceccc8b356a4ccb1c0908d7e5fed61c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637230754994306472&sdata=UMNbHUQw6s0AbwXUQmQ2QDMRjSJjbQg9bouW9AbffAU%3D&reserved=0 https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fedk2.groups.io%2Fg%2Fdevel%2Fmessage%2F57611&data=02%7C01%7Csean.brogan%40microsoft.com%7C4ceccc8b356a4ccb1c0908d7e5fed61c%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637230754994306472&sdata=wvtrWaYQQjliFZmZWXjtIcKXockdV5j3RPNElXIJpcY%3D&reserved=0 *However*, unfortunately, when looking at the RST format improvements, I missed that Sean implemented the RST files directly in the package root directories; and *not* under the PlatformCI directory. I'm very sorry for missing that -- I assumed that the text files were under PlatformCI like I had requested / agreed earlier, and I didn't realize from the URLs that Sean pasted that this wasn't the case. So, I have two observations / requests: (1) The three RST file names are capitalized differently (two use ALL CAPS, one uses CamelCase), before the .rst suffix. Please stick with one style. (2) I'd really like these RST text files to be moved under the respective PlatformCI directories. (My understanding is, from Sean's message quoted above, that this is possible, and github can display it well when the user browses the PlatformCI directory in a web browser.) With those updates, for the OvmfPkg and ArmVirtPkg patches: Acked-by: Laszlo Ersek <lersek@redhat.com> Thanks! Laszlo ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [EXTERNAL] Re: [PATCH v2 0/6] Edk2 Platform and Core CI for ArmVirtPkg, EmulatorPkg, and OvmfPkg 2020-04-23 0:45 ` [EXTERNAL] " Sean @ 2020-04-23 1:08 ` Bret Barkelew 2020-04-23 8:42 ` Ard Biesheuvel 2020-04-24 14:33 ` Laszlo Ersek 2 siblings, 0 replies; 8+ messages in thread From: Bret Barkelew @ 2020-04-23 1:08 UTC (permalink / raw) To: Sean Brogan, Laszlo Ersek, michael.kubacki@outlook.com, devel@edk2.groups.io Cc: Andrew Fish, Ard Biesheuvel, Jordan Justen, Leif Lindholm, Liming Gao, Kinney, Michael D, Ray Ni [-- Attachment #1: Type: text/plain, Size: 6953 bytes --] I personally prefer readME. - Bret ________________________________ From: Sean Brogan <sean.brogan@microsoft.com> Sent: Wednesday, April 22, 2020 5:45:41 PM To: Laszlo Ersek <lersek@redhat.com>; michael.kubacki@outlook.com <michael.kubacki@outlook.com>; devel@edk2.groups.io <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>; Leif Lindholm <leif@nuviainc.com>; Liming Gao <liming.gao@intel.com>; Kinney, Michael D <michael.d.kinney@intel.com>; Ray Ni <ray.ni@intel.com> Subject: RE: [EXTERNAL] Re: [PATCH v2 0/6] Edk2 Platform and Core CI for ArmVirtPkg, EmulatorPkg, and OvmfPkg I was hoping that because it wasn't "HTML tag soup" that build status could be front and center in the package readme as I find that more in line with expectations on github based projects. Nesting it deeper in the package just means less people find it when looking at your package. But I could see a few ways to solve it so I am looking for feedback and alignment before doing anything else. Option 1. 1. Add the Platform CI build status for the three platforms to the Edk2 repo readme since these are platforms in edk2 this makes sense and brings the most visibility to their status and the existence of the builds. 2. Convert edk2 repo readme to RST so it avoids "HTML tag soup" 3. Move the remaining part of the OvmfPkg/Readme.rst file into OvmfPkg/PlatformCI/Readme.md (I prefer MD when not doing large tables of links as it is easier to write and slightly easier to read as plain text). 4. Do step 3 for ArmVirtPkg and EmulatorPkg too Option 2. 1. Leave the ReadMe.rst at the root of each package but only include the build status table and add a link to the PlatformCi/ReadMe.md 2. Move the Pytool and Platform CI focused readme contents to PlatformCI/ReadMe.md Option 3. Something else. Finally does anyone have a strong preference for ReadMe vs README vs readme vs Readme vs ReAdMe? I see a mix of these in the edk2 code tree. Thanks Sean -----Original Message----- From: Laszlo Ersek <lersek@redhat.com> Sent: Tuesday, April 21, 2020 7:18 AM To: michael.kubacki@outlook.com; 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>; Leif Lindholm <leif@nuviainc.com>; Liming Gao <liming.gao@intel.com>; Kinney, Michael D <michael.d.kinney@intel.com>; Ray Ni <ray.ni@intel.com>; Sean Brogan <sean.brogan@microsoft.com> Subject: [EXTERNAL] Re: [PATCH v2 0/6] Edk2 Platform and Core CI for ArmVirtPkg, EmulatorPkg, and OvmfPkg On 04/20/20 21:12, michael.kubacki@outlook.com wrote: > ArmVirtPkg/ReadMe.rst | 139 ++++++++++ > EmulatorPkg/README.rst | 175 +++++++++++++ > OvmfPkg/README.rst | 211 +++++++++++++++ I made a mistake -- I apologize. * In my email here (two links to the same message): https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fmid.mail-archive.com%2F061ab841-33fb-b46f-a9e7-1b5ce0d2e2f4%40redhat.com&data=02%7C01%7CBret.Barkelew%40microsoft.com%7Cff2e143e309947db927208d7e71fa67b%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637231995429446475&sdata=IqalI4uGAkF9OB6NoMwzbA2RQ5R2ZgWiSoGgzO9NOCw%3D&reserved=0 https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fedk2.groups.io%2Fg%2Fdevel%2Fmessage%2F57468&data=02%7C01%7CBret.Barkelew%40microsoft.com%7Cff2e143e309947db927208d7e71fa67b%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637231995429451477&sdata=g95MDG3KWLYNrsVBlcJL4iRwMIF4KEjBrR5LlCosvOs%3D&reserved=0 I gladly accepted the option offered by Sean that we put the CI-specific README files (for at least OvmfPkg and ArmVirtPkg) under the PlatformCI subdirectory. Quote: On 04/16/20 16:51, Laszlo Ersek wrote: > On 04/15/20 22:38, sean.brogan via [] wrote: >> If that isn't desirable i would at least suggest we change the title >> to just ReadMe.md so that GitHub shows it by default when the >> PaltformCI folder is viewed form the web or in editor like vscode. > > This sounds 100% viable and great to me. I didn't expect this could > work! (I'm generally unaware of the readme filename patterns, and > locations, that github.com recognizes; sorry about that.) Having an > "unadorned" ReadMe.md file under PlatformCI is just perfect. > > So if I understand correctly, we could choose: > > ArmVirtPkg/ArmVirtPkg.ci.yaml > ArmVirtPkg/PlatformCI/PlatformBuild.py > ArmVirtPkg/PlatformCI/ReadMe.md > ArmVirtPkg/PlatformCI/Ubuntu-GCC5.yml > ArmVirtPkg/PlatformCI/iasl_ext_dep.yaml > > Do I understand right? > > Because, I'd find this great! Back then, the format for the readme was assumed MD, but that wasn't the main topic -- the main topic was the directory layout. * Then, when the MD vs. RST format question came up, I checked the RST format (the *contents*), and I was happy with it. My email (two links again): https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fmid.mail-archive.com%2F1be6a25d-06e2-4109-8acf-0fe82d150af4%40redhat.com&data=02%7C01%7CBret.Barkelew%40microsoft.com%7Cff2e143e309947db927208d7e71fa67b%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637231995429451477&sdata=UobvKytOeYE11XYwK%2BiexNLwuS66OaRSOhactCdO6YI%3D&reserved=0 https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fedk2.groups.io%2Fg%2Fdevel%2Fmessage%2F57611&data=02%7C01%7CBret.Barkelew%40microsoft.com%7Cff2e143e309947db927208d7e71fa67b%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637231995429451477&sdata=qRlmoAxPc1mN3SlrfrFpkNQyQvA%2B30VAo%2FRaFGJENbE%3D&reserved=0 *However*, unfortunately, when looking at the RST format improvements, I missed that Sean implemented the RST files directly in the package root directories; and *not* under the PlatformCI directory. I'm very sorry for missing that -- I assumed that the text files were under PlatformCI like I had requested / agreed earlier, and I didn't realize from the URLs that Sean pasted that this wasn't the case. So, I have two observations / requests: (1) The three RST file names are capitalized differently (two use ALL CAPS, one uses CamelCase), before the .rst suffix. Please stick with one style. (2) I'd really like these RST text files to be moved under the respective PlatformCI directories. (My understanding is, from Sean's message quoted above, that this is possible, and github can display it well when the user browses the PlatformCI directory in a web browser.) With those updates, for the OvmfPkg and ArmVirtPkg patches: Acked-by: Laszlo Ersek <lersek@redhat.com> Thanks! Laszlo [-- Attachment #2: Type: text/html, Size: 10746 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [EXTERNAL] Re: [PATCH v2 0/6] Edk2 Platform and Core CI for ArmVirtPkg, EmulatorPkg, and OvmfPkg 2020-04-23 0:45 ` [EXTERNAL] " Sean 2020-04-23 1:08 ` Bret Barkelew @ 2020-04-23 8:42 ` Ard Biesheuvel 2020-04-24 14:33 ` Laszlo Ersek 2 siblings, 0 replies; 8+ messages in thread From: Ard Biesheuvel @ 2020-04-23 8:42 UTC (permalink / raw) To: Sean Brogan, Laszlo Ersek, michael.kubacki@outlook.com, devel@edk2.groups.io Cc: Andrew Fish, Bret Barkelew, Jordan Justen, Leif Lindholm, Liming Gao, Kinney, Michael D, Ray Ni On 4/23/20 2:45 AM, Sean Brogan wrote: > I was hoping that because it wasn't "HTML tag soup" that build status could be front and center in the package readme as I find that more in line with expectations on github based projects. Nesting it deeper in the package just means less people find it when looking at your package. But I could see a few ways to solve it so I am looking for feedback and alignment before doing anything else. > > Option 1. > > 1. Add the Platform CI build status for the three platforms to the Edk2 repo readme since these are platforms in edk2 this makes sense and brings the most visibility to their status and the existence of the builds. > 2. Convert edk2 repo readme to RST so it avoids "HTML tag soup" > 3. Move the remaining part of the OvmfPkg/Readme.rst file into OvmfPkg/PlatformCI/Readme.md (I prefer MD when not doing large tables of links as it is easier to write and slightly easier to read as plain text). > 4. Do step 3 for ArmVirtPkg and EmulatorPkg too > > Option 2. > 1. Leave the ReadMe.rst at the root of each package but only include the build status table and add a link to the PlatformCi/ReadMe.md > 2. Move the Pytool and Platform CI focused readme contents to PlatformCI/ReadMe.md > > Option 3. > > Something else. > Given the intent to make it a requirement that changes don't regress on these platforms we've selected, I think having the CI build (and boot!) status of these platforms front and center makes sense. I am absolutely fine with using either .md or .rst depending on the needs of the individual use cases. So I suppose that means option #1, or some variation thereof. > Finally does anyone have a strong preference for ReadMe vs README vs readme vs Readme vs ReAdMe? I see a mix of these in the edk2 code tree. > ReadMe is the most idiomatic given the EDK2 coding style, but I could live with README as well. ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [EXTERNAL] Re: [PATCH v2 0/6] Edk2 Platform and Core CI for ArmVirtPkg, EmulatorPkg, and OvmfPkg 2020-04-23 0:45 ` [EXTERNAL] " Sean 2020-04-23 1:08 ` Bret Barkelew 2020-04-23 8:42 ` Ard Biesheuvel @ 2020-04-24 14:33 ` Laszlo Ersek 2020-04-24 20:21 ` [edk2-devel] " Bret Barkelew 2 siblings, 1 reply; 8+ messages in thread From: Laszlo Ersek @ 2020-04-24 14:33 UTC (permalink / raw) To: Sean Brogan, michael.kubacki@outlook.com, devel@edk2.groups.io Cc: Andrew Fish, Ard Biesheuvel, Bret Barkelew, Jordan Justen, Leif Lindholm, Liming Gao, Kinney, Michael D, Ray Ni On 04/23/20 02:45, Sean Brogan wrote: > I was hoping that because it wasn't "HTML tag soup" that build status could be front and center in the package readme as I find that more in line with expectations on github based projects. Nesting it deeper in the package just means less people find it when looking at your package. But I could see a few ways to solve it so I am looking for feedback and alignment before doing anything else. > > Option 1. > > 1. Add the Platform CI build status for the three platforms to the Edk2 repo readme since these are platforms in edk2 this makes sense and brings the most visibility to their status and the existence of the builds. > 2. Convert edk2 repo readme to RST so it avoids "HTML tag soup" > 3. Move the remaining part of the OvmfPkg/Readme.rst file into OvmfPkg/PlatformCI/Readme.md (I prefer MD when not doing large tables of links as it is easier to write and slightly easier to read as plain text). > 4. Do step 3 for ArmVirtPkg and EmulatorPkg too > > Option 2. > 1. Leave the ReadMe.rst at the root of each package but only include the build status table and add a link to the PlatformCi/ReadMe.md > 2. Move the Pytool and Platform CI focused readme contents to PlatformCI/ReadMe.md > > Option 3. > > Something else. > > Finally does anyone have a strong preference for ReadMe vs README vs readme vs Readme vs ReAdMe? I see a mix of these in the edk2 code tree. Sorry, I didn't mean to ignore this sub-thread, I just got to see the other email (about the V10 branch) first. My understanding is that V10 has come to a resolution about the questions above; and I'm happy with V10 (as I stated in that thread). Thanks! Laszlo ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [edk2-devel] [EXTERNAL] Re: [PATCH v2 0/6] Edk2 Platform and Core CI for ArmVirtPkg, EmulatorPkg, and OvmfPkg 2020-04-24 14:33 ` Laszlo Ersek @ 2020-04-24 20:21 ` Bret Barkelew 0 siblings, 0 replies; 8+ messages in thread From: Bret Barkelew @ 2020-04-24 20:21 UTC (permalink / raw) To: devel@edk2.groups.io, lersek@redhat.com, Sean Brogan, michael.kubacki@outlook.com Cc: Andrew Fish, Ard Biesheuvel, Jordan Justen, Leif Lindholm, Liming Gao, Kinney, Michael D, Ray Ni [-- Attachment #1: Type: text/plain, Size: 2565 bytes --] Reviewed-by: Bret Barkelew <bret.barkelew@microsoft.com> - Bret ________________________________ From: devel@edk2.groups.io <devel@edk2.groups.io> on behalf of Laszlo Ersek via groups.io <lersek=redhat.com@groups.io> Sent: Friday, April 24, 2020 7:33:11 AM To: Sean Brogan <sean.brogan@microsoft.com>; michael.kubacki@outlook.com <michael.kubacki@outlook.com>; devel@edk2.groups.io <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>; Leif Lindholm <leif@nuviainc.com>; Liming Gao <liming.gao@intel.com>; Kinney, Michael D <michael.d.kinney@intel.com>; Ray Ni <ray.ni@intel.com> Subject: Re: [edk2-devel] [EXTERNAL] Re: [PATCH v2 0/6] Edk2 Platform and Core CI for ArmVirtPkg, EmulatorPkg, and OvmfPkg On 04/23/20 02:45, Sean Brogan wrote: > I was hoping that because it wasn't "HTML tag soup" that build status could be front and center in the package readme as I find that more in line with expectations on github based projects. Nesting it deeper in the package just means less people find it when looking at your package. But I could see a few ways to solve it so I am looking for feedback and alignment before doing anything else. > > Option 1. > > 1. Add the Platform CI build status for the three platforms to the Edk2 repo readme since these are platforms in edk2 this makes sense and brings the most visibility to their status and the existence of the builds. > 2. Convert edk2 repo readme to RST so it avoids "HTML tag soup" > 3. Move the remaining part of the OvmfPkg/Readme.rst file into OvmfPkg/PlatformCI/Readme.md (I prefer MD when not doing large tables of links as it is easier to write and slightly easier to read as plain text). > 4. Do step 3 for ArmVirtPkg and EmulatorPkg too > > Option 2. > 1. Leave the ReadMe.rst at the root of each package but only include the build status table and add a link to the PlatformCi/ReadMe.md > 2. Move the Pytool and Platform CI focused readme contents to PlatformCI/ReadMe.md > > Option 3. > > Something else. > > Finally does anyone have a strong preference for ReadMe vs README vs readme vs Readme vs ReAdMe? I see a mix of these in the edk2 code tree. Sorry, I didn't mean to ignore this sub-thread, I just got to see the other email (about the V10 branch) first. My understanding is that V10 has come to a resolution about the questions above; and I'm happy with V10 (as I stated in that thread). Thanks! Laszlo [-- Attachment #2: Type: text/html, Size: 4531 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [EXTERNAL] [PATCH v2 0/6] Edk2 Platform and Core CI for ArmVirtPkg, EmulatorPkg, and OvmfPkg 2020-04-20 19:12 [PATCH v2 0/6] Edk2 Platform and Core CI for ArmVirtPkg, EmulatorPkg, and OvmfPkg Michael Kubacki 2020-04-21 14:18 ` Laszlo Ersek @ 2020-04-24 20:22 ` Bret Barkelew 1 sibling, 0 replies; 8+ messages in thread From: Bret Barkelew @ 2020-04-24 20:22 UTC (permalink / raw) To: michael.kubacki@outlook.com, devel@edk2.groups.io Cc: Andrew Fish, Ard Biesheuvel, Jordan Justen, Laszlo Ersek, Leif Lindholm, Liming Gao, Kinney, Michael D, Ray Ni, Sean Brogan [-- Attachment #1: Type: text/plain, Size: 7788 bytes --] Reviewed-by: Bret Barkelew <bret.barkelew@microsoft.com> - Bret ________________________________ From: michael.kubacki@outlook.com <michael.kubacki@outlook.com> Sent: Monday, April 20, 2020 12:12:10 PM To: devel@edk2.groups.io <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>; Kinney, Michael D <michael.d.kinney@intel.com>; Ray Ni <ray.ni@intel.com>; Sean Brogan <sean.brogan@microsoft.com> Subject: [EXTERNAL] [PATCH v2 0/6] Edk2 Platform and Core CI for ArmVirtPkg, EmulatorPkg, and OvmfPkg 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://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fspbrogan%2Fedk2%2Fblob%2FPlatformAndCoreCIForOvmfArmVirtEmulatorPackages_v9%2FArmVirtPkg%2FReadMe.rst&data=02%7C01%7CBret.Barkelew%40microsoft.com%7Cb385548db8bb448b7c0608d7e55ecd34%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637230067645466828&sdata=IhxGbPWZmhb3vP1LZw%2FGVHgQ8Zjwxw3zzV%2FUZnAZFP8%3D&reserved=0 EmulatorPkg: https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fspbrogan%2Fedk2%2Fblob%2FPlatformAndCoreCIForOvmfArmVirtEmulatorPackages_v9%2FEmulatorPkg%2FREADME.rst&data=02%7C01%7CBret.Barkelew%40microsoft.com%7Cb385548db8bb448b7c0608d7e55ecd34%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637230067645466828&sdata=%2FdcY%2FtX0G2C%2BUeDokHAWrxngsHuhGE5hqj5XCzt%2Bza0%3D&reserved=0 OvmfPkg: https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fspbrogan%2Fedk2%2Fblob%2FPlatformAndCoreCIForOvmfArmVirtEmulatorPackages_v9%2FOvmfPkg%2FREADME.rst&data=02%7C01%7CBret.Barkelew%40microsoft.com%7Cb385548db8bb448b7c0608d7e55ecd34%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637230067645466828&sdata=AIEXWiak44VKWKSXYzT0wIiAybnU7BNSEij7Q76LfRY%3D&reserved=0 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://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fspbrogan%2Fedk2%2Ftree%2FPlatformAndCoreCIForOvmfArmVirtEmulatorPackages_v9%2F.pytool&data=02%7C01%7CBret.Barkelew%40microsoft.com%7Cb385548db8bb448b7c0608d7e55ecd34%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637230067645466828&sdata=lmnZ8ZCGjE90eQIm0v9yQrOsb9kc7Ay4Zvh546SED3o%3D&reserved=0 Changes for V2: * PlatformBuild.py, iasl dependency, and azurepipeline files have been moved into a PlatformCI folder within the respective package. * PlatformBuild.py - RequiredSubmodules function configured to read from edk2 .gitmodules to lower required updates. * ReadMe files have been switched to reStructuredText to make Build Status table less distracting when viewing plaintext. Branch: https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fspbrogan%2Fedk2%2Ftree%2FPlatformAndCoreCIForOvmfArmVirtEmulatorPackages_v9&data=02%7C01%7CBret.Barkelew%40microsoft.com%7Cb385548db8bb448b7c0608d7e55ecd34%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637230067645466828&sdata=%2B4L8vVR87hszN5zOvt1LqX%2BxiUiMpsOynhbdpgq5RFo%3D&reserved=0 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: 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/ArmVirtPkg.ci.yaml | 103 ++++++++ ArmVirtPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml | 89 +++++++ ArmVirtPkg/PlatformCI/PlatformBuild.py | 276 ++++++++++++++++++++ ArmVirtPkg/PlatformCI/iasl_ext_dep.yaml | 21 ++ ArmVirtPkg/ReadMe.rst | 139 ++++++++++ EmulatorPkg/EmulatorPkg.ci.yaml | 85 ++++++ EmulatorPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml | 95 +++++++ EmulatorPkg/PlatformCI/.azurepipelines/Windows-VS2019.yml | 85 ++++++ EmulatorPkg/PlatformCI/PlatformBuild.py | 272 +++++++++++++++++++ EmulatorPkg/README.rst | 175 +++++++++++++ OvmfPkg/OvmfPkg.ci.yaml | 83 ++++++ OvmfPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml | 133 ++++++++++ OvmfPkg/PlatformCI/.azurepipelines/Windows-VS2019.yml | 138 ++++++++++ OvmfPkg/PlatformCI/PlatformBuild.py | 254 ++++++++++++++++++ OvmfPkg/PlatformCI/iasl_ext_dep.yaml | 21 ++ OvmfPkg/README.rst | 211 +++++++++++++++ 23 files changed, 2451 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/ArmVirtPkg.ci.yaml create mode 100644 ArmVirtPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml create mode 100644 ArmVirtPkg/PlatformCI/PlatformBuild.py create mode 100644 ArmVirtPkg/PlatformCI/iasl_ext_dep.yaml create mode 100644 ArmVirtPkg/ReadMe.rst create mode 100644 EmulatorPkg/EmulatorPkg.ci.yaml create mode 100644 EmulatorPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml create mode 100644 EmulatorPkg/PlatformCI/.azurepipelines/Windows-VS2019.yml create mode 100644 EmulatorPkg/PlatformCI/PlatformBuild.py create mode 100644 EmulatorPkg/README.rst create mode 100644 OvmfPkg/OvmfPkg.ci.yaml create mode 100644 OvmfPkg/PlatformCI/.azurepipelines/Ubuntu-GCC5.yml create mode 100644 OvmfPkg/PlatformCI/.azurepipelines/Windows-VS2019.yml create mode 100644 OvmfPkg/PlatformCI/PlatformBuild.py create mode 100644 OvmfPkg/PlatformCI/iasl_ext_dep.yaml create mode 100644 OvmfPkg/README.rst -- 2.16.3.windows.1 [-- Attachment #2: Type: text/html, Size: 15609 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2020-04-24 20:22 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-04-20 19:12 [PATCH v2 0/6] Edk2 Platform and Core CI for ArmVirtPkg, EmulatorPkg, and OvmfPkg Michael Kubacki 2020-04-21 14:18 ` Laszlo Ersek 2020-04-23 0:45 ` [EXTERNAL] " Sean 2020-04-23 1:08 ` Bret Barkelew 2020-04-23 8:42 ` Ard Biesheuvel 2020-04-24 14:33 ` Laszlo Ersek 2020-04-24 20:21 ` [edk2-devel] " Bret Barkelew 2020-04-24 20:22 ` [EXTERNAL] " Bret Barkelew
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox