public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Michael D Kinney" <michael.d.kinney@intel.com>
To: "mikuback@linux.microsoft.com" <mikuback@linux.microsoft.com>,
	"devel@edk2.groups.io" <devel@edk2.groups.io>,
	"Kinney, Michael D" <michael.d.kinney@intel.com>
Cc: "Chiu, Chasel" <chasel.chiu@intel.com>,
	"Gao, Liming" <gaoliming@byosoft.com.cn>,
	"Desimone, Nathaniel L" <nathaniel.l.desimone@intel.com>,
	Sean Brogan <sean.brogan@microsoft.com>,
	"Zeng, Star" <star.zeng@intel.com>
Subject: Re: [PATCH v2 0/6] Enable CI in Intel FSP Packages
Date: Tue, 4 Oct 2022 16:02:49 +0000	[thread overview]
Message-ID: <CO1PR11MB49297E7F25DE905A04058969D25A9@CO1PR11MB4929.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20220915185508.997-1-mikuback@linux.microsoft.com>

With one comment that IntelFsp2WrapperPkg.dec file needs a new
issue opened to resolve 2 library classes pointing to same
include file.

Series Reviewed-by: Michael D Kinney <michael.d.kinney>

Mike

> -----Original Message-----
> From: mikuback@linux.microsoft.com <mikuback@linux.microsoft.com>
> Sent: Thursday, September 15, 2022 11:55 AM
> To: devel@edk2.groups.io
> Cc: Chiu, Chasel <chasel.chiu@intel.com>; Gao, Liming <gaoliming@byosoft.com.cn>; Kinney, Michael D <michael.d.kinney@intel.com>;
> Desimone, Nathaniel L <nathaniel.l.desimone@intel.com>; Sean Brogan <sean.brogan@microsoft.com>; Zeng, Star <star.zeng@intel.com>
> Subject: [PATCH v2 0/6] Enable CI in Intel FSP Packages
> 
> From: Michael Kubacki <michael.kubacki@microsoft.com>
> 
> REF:https://bugzilla.tianocore.org/show_bug.cgi?id=4048
> 
> - Enables CI in IntelFsp2Pkg and IntelFsp2WrapperPkg.
> - Fixes several pre-existing issues that impact common CI checks.
> 
> You can find the CI results for the packages with this change
> in the following edk2 PR:
> https://github.com/tianocore/edk2/pull/3347
> 
> V2 Changes:
> 
>   1. The pre-existing compilation issue in IntelFsp2Pkg that caused
>   the following BZ to be filed in v1 is now resolved. Therefore,
>   the compiler CI plugin is enabled in IntelFsp2Pkg now.
> 
>   https://bugzilla.tianocore.org/show_bug.cgi?id=4049
> 
>   2. The following patch is dropped from v2:
> 
>   [PATCH v1 5/7] IntelFsp2WrapperPkg.dec: Remove duplicate
>   LibraryClasses entry
> 
>   Chasel indicated this is an intentional design decision so
>   platforms do not have to override the entire library instance
>   during platform integration.
> 
>   Consequently, "FspWrapperPlatformMultiPhaseLib" was added to the
>   ignore list for the "LibraryClassCheck" CI plugin in
>   IntelFspWrapperPkg.ci.yaml.
> 
>   Rebased series on f46c7d1e36c9 and added v1 R-b tags.
> 
> Cc: Chasel Chiu <chasel.chiu@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>
> Cc: Sean Brogan <sean.brogan@microsoft.com>
> Cc: Star Zeng <star.zeng@intel.com>
> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
> 
> Michael Kubacki (6):
>   IntelFsp2Pkg: Fix code formatting errors
>   IntelFsp2Pkg/BaseFspMultiPhaseLib: Replace duplicate GUID
>   IntelFsp2Pkg: Add CI YAML file
>   IntelFsp2WrapperPkg: Fix code formatting errors
>   IntelFsp2WrapperPkg: Add CI YAML file
>   .azurepipelines: Add IntelFsp2Pkg and IntelFsp2WrapperPkg to CI
> 
>  IntelFsp2Pkg/Library/BaseFspDebugLibSerialPort/DebugLib.c                      |  9 +-
>  IntelFsp2Pkg/Library/BaseFspSwitchStackLib/FspSwitchStackLib.c                 |  2 +-
>  IntelFsp2WrapperPkg/Library/BaseFspWrapperApiLib/FspWrapperApiLib.c            |  4 +
>  IntelFsp2WrapperPkg/Library/BaseFspWrapperApiLib/IA32/DispatchExecute.c        |  1 -
>  IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/SecRamInitData.c |  8 +-
>  .azurepipelines/templates/pr-gate-build-job.yml                                |  3 +
>  .pytool/CISettings.py                                                          |  2 +
>  IntelFsp2Pkg/Include/Ppi/Variable.h                                            |  8 +-
>  IntelFsp2Pkg/IntelFsp2Pkg.ci.yaml                                              | 90 ++++++++++++++++++
>  IntelFsp2Pkg/Library/BaseFspMultiPhaseLib/BaseFspMultiPhaseLib.inf             |  2 +-
>  IntelFsp2WrapperPkg/IntelFsp2WrapperPkg.ci.yaml                                | 96 ++++++++++++++++++++
>  11 files changed, 210 insertions(+), 15 deletions(-)
>  create mode 100644 IntelFsp2Pkg/IntelFsp2Pkg.ci.yaml
>  create mode 100644 IntelFsp2WrapperPkg/IntelFsp2WrapperPkg.ci.yaml
> 
> --
> 2.28.0.windows.1


      parent reply	other threads:[~2022-10-04 16:03 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-15 18:55 [PATCH v2 0/6] Enable CI in Intel FSP Packages Michael Kubacki
2022-09-15 18:55 ` [PATCH v2 1/6] IntelFsp2Pkg: Fix code formatting errors Michael Kubacki
2022-09-15 18:55 ` [PATCH v2 2/6] IntelFsp2Pkg/BaseFspMultiPhaseLib: Replace duplicate GUID Michael Kubacki
2022-09-15 18:55 ` [PATCH v2 3/6] IntelFsp2Pkg: Add CI YAML file Michael Kubacki
2022-09-15 18:55 ` [PATCH v2 4/6] IntelFsp2WrapperPkg: Fix code formatting errors Michael Kubacki
2022-09-15 18:55 ` [PATCH v2 5/6] IntelFsp2WrapperPkg: Add CI YAML file Michael Kubacki
2022-10-04 16:01   ` [edk2-devel] " Michael D Kinney
2022-10-04 16:21     ` Michael Kubacki
2022-10-05  1:27       ` Chiu, Chasel
2022-10-05  3:08         ` Michael Kubacki
2022-10-05  3:59           ` Chiu, Chasel
2022-09-15 18:55 ` [PATCH v2 6/6] .azurepipelines: Add IntelFsp2Pkg and IntelFsp2WrapperPkg to CI Michael Kubacki
     [not found] ` <17151D8FB6D820D9.18791@groups.io>
2022-09-15 19:41   ` [edk2-devel] [PATCH v2 3/6] IntelFsp2Pkg: Add CI YAML file Michael Kubacki
2022-09-23  1:07     ` Michael Kubacki
2022-10-03 14:44       ` Michael Kubacki
2022-10-03 18:46         ` Michael Kubacki
2022-10-04 16:02 ` Michael D Kinney [this message]

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=CO1PR11MB49297E7F25DE905A04058969D25A9@CO1PR11MB4929.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