From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web10.3616.1662520775997366184 for ; Tue, 06 Sep 2022 20:19:36 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="body hash did not verify" header.i=@linux.microsoft.com header.s=default header.b=AnxLpRoR; spf=pass (domain: linux.microsoft.com, ip: 13.77.154.182, mailfrom: mikuback@linux.microsoft.com) Received: from localhost.localdomain (unknown [47.195.228.134]) by linux.microsoft.com (Postfix) with ESMTPSA id 673AB204A583; Tue, 6 Sep 2022 20:19:34 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 673AB204A583 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1662520775; bh=9s9Qi+1hBBmF+ikoZwQj/I9xub6jc78GwKjAn2D6rM4=; h=From:To:Cc:Subject:Date:From; b=AnxLpRoRTvsPd1pyfoRoaBupW0K+yNAtAVvN0EL15i6Y0U47HxgnHc9TZKfe1TVmI KDJvqISehn8AN7T7zmj1KK4oRF11Dl6F+Rm24nBYG9USrcEwDPgagTeEA/0+ZYjhkb 3AojO9YFvI183objJ5uPw0rLCeWrEYGpC8NnURgQ= From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Bret Barkelew , Chasel Chiu , Liming Gao , Michael D Kinney , Nate DeSimone , Sean Brogan , Star Zeng Subject: [PATCH v1 0/7] Enable CI in Intel FSP Packages Date: Tue, 6 Sep 2022 23:19:07 -0400 Message-Id: <20220907031914.397-1-mikuback@linux.microsoft.com> X-Mailer: git-send-email 2.28.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Kubacki REF:https://bugzilla.tianocore.org/show_bug.cgi?id=3D4048 Enables CI in IntelFsp2Pkg and IntelFsp2WrapperPkg. Fixes several pre-existing issues that impact common CI checks. Note that compilation is disabled in this change due to a build issue in IntelFsp2Pkg. See v1 patch 3/7 and the following BZ for more details and recommended next steps. https://bugzilla.tianocore.org/show_bug.cgi?id=3D4049 You can find the CI results for the packages with this change in the following edk2 PR; https://github.com/tianocore/edk2/pull/3303 Cc: Bret Barkelew Cc: Chasel Chiu Cc: Liming Gao Cc: Michael D Kinney Cc: Nate DeSimone Cc: Sean Brogan Cc: Star Zeng Signed-off-by: Michael Kubacki Michael Kubacki (7): IntelFsp2Pkg: Fix code formatting errors IntelFsp2Pkg/BaseFspMultiPhaseLib: Replace duplicate GUID IntelFsp2Pkg: Add CI YAML file IntelFsp2WrapperPkg: Fix code formatting errors IntelFsp2WrapperPkg.dec: Remove duplicate LibraryClasses entry 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/SecRamInit= Data.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 = | 92 ++++++++++++++++++++ IntelFsp2WrapperPkg/IntelFsp2WrapperPkg.dec = | 4 - 12 files changed, 206 insertions(+), 19 deletions(-) create mode 100644 IntelFsp2Pkg/IntelFsp2Pkg.ci.yaml create mode 100644 IntelFsp2WrapperPkg/IntelFsp2WrapperPkg.ci.yaml --=20 2.28.0.windows.1