From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mx.groups.io with SMTP id smtpd.web08.80749.1629441877417138650 for ; Thu, 19 Aug 2021 23:44:37 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.126, mailfrom: dun.tan@intel.com) X-IronPort-AV: E=McAfee;i="6200,9189,10081"; a="203868170" X-IronPort-AV: E=Sophos;i="5.84,336,1620716400"; d="scan'208";a="203868170" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Aug 2021 23:44:36 -0700 X-IronPort-AV: E=Sophos;i="5.84,336,1620716400"; d="scan'208";a="452537711" Received: from duntan-mobl.ccr.corp.intel.com ([10.238.1.156]) by fmsmga007-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Aug 2021 23:44:32 -0700 From: "duntan" To: devel@edk2.groups.io Cc: Sean Brogan , Bret Barkelew , Michael D Kinney , Liming Gao , DunTan Subject: [PATCH 2/2] .azurepipelines: Add UefiPayloadPkg in gate-build-job.yml and CISetting.py Date: Fri, 20 Aug 2021 14:43:37 +0800 Message-Id: <20210820064337.795-3-dun.tan@intel.com> X-Mailer: git-send-email 2.31.1.windows.1 In-Reply-To: <20210820064337.795-1-dun.tan@intel.com> References: <20210820064337.795-1-dun.tan@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Add UefiPayloadPkg in gate-build-job.yml to enable Core ci for UefiPayloadPkg. Add UefiPayloadPkg to supported Packages in CISettings. Cc: Sean Brogan Cc: Bret Barkelew Cc: Michael D Kinney Cc: Liming Gao Signed-off-by: DunTan --- .azurepipelines/templates/pr-gate-build-job.yml | 3 +++ .pytool/CISettings.py | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.azurepipelines/templates/pr-gate-build-job.yml b/.azurepipelines/templates/pr-gate-build-job.yml index 207acc7631..d5b16c127f 100644 --- a/.azurepipelines/templates/pr-gate-build-job.yml +++ b/.azurepipelines/templates/pr-gate-build-job.yml @@ -48,6 +48,9 @@ jobs: TARGET_SECURITY: Build.Pkgs: 'SecurityPkg' Build.Targets: 'DEBUG,RELEASE,NO-TARGET' + TARGET_UEFIPAYLOAD: + Build.Pkgs: 'UefiPayloadPkg' + Build.Targets: 'DEBUG,RELEASE,NO-TARGET' TARGET_PLATFORMS: # For Platforms only check code. Leave it to Platform CI # to build them. diff --git a/.pytool/CISettings.py b/.pytool/CISettings.py index 96e6baa519..ce330e2c73 100644 --- a/.pytool/CISettings.py +++ b/.pytool/CISettings.py @@ -67,7 +67,8 @@ class Settings(CiBuildSettingsManager, UpdateSettingsManager, SetupSettingsManag "CryptoPkg", "UnitTestFrameworkPkg", "OvmfPkg", - "RedfishPkg" + "RedfishPkg", + "UefiPayloadPkg" ) def GetArchitecturesSupported(self): -- 2.31.1.windows.1