summaryrefslogtreecommitdiff
path: root/.azurepipelines
diff options
context:
space:
mode:
authorMichael D Kinney <michael.d.kinney@intel.com>2023-04-03 10:01:25 -0700
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2023-04-04 15:06:31 +0000
commitfb89f62d2702faf7db7f7afef342467d4f0fba3c (patch)
treebb4637c280d28006fb0a488ee03c368471a8ad7c /.azurepipelines
parent56e70968e9e53002e30d779bcce0efb9fe7d7081 (diff)
downloadedk2-fb89f62d2702faf7db7f7afef342467d4f0fba3c.zip
edk2-fb89f62d2702faf7db7f7afef342467d4f0fba3c.tar.gz
edk2-fb89f62d2702faf7db7f7afef342467d4f0fba3c.tar.bz2
.azurepilelines/templates: Split CryptoPkg builds
CryptoPkg has double the build time of all other packages. Split CryptoPkg up matching the style applied to MdeModulePkg. Cc: Sean Brogan <sean.brogan@microsoft.com> Cc: Michael Kubacki <mikuback@linux.microsoft.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Michael Kubacki <mikuback@linux.microsoft.com>
Diffstat (limited to '.azurepipelines')
-rw-r--r--.azurepipelines/templates/pr-gate-build-job.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.azurepipelines/templates/pr-gate-build-job.yml b/.azurepipelines/templates/pr-gate-build-job.yml
index 3999bb1..689e2f0 100644
--- a/.azurepipelines/templates/pr-gate-build-job.yml
+++ b/.azurepipelines/templates/pr-gate-build-job.yml
@@ -49,9 +49,12 @@ jobs:
TARGET_FMP_FAT_TEST:
Build.Pkgs: 'FmpDevicePkg,FatPkg,UnitTestFrameworkPkg,DynamicTablesPkg'
Build.Targets: 'DEBUG,RELEASE,NO-TARGET,NOOPT'
- TARGET_CRYPTO:
+ TARGET_CRYPTO_DEBUG:
Build.Pkgs: 'CryptoPkg'
- Build.Targets: 'DEBUG,RELEASE,NO-TARGET,NOOPT'
+ Build.Targets: 'DEBUG,NOOPT'
+ TARGET_CRYPTO_RELEASE:
+ Build.Pkgs: 'CryptoPkg'
+ Build.Targets: 'RELEASE,NO-TARGET'
TARGET_FSP:
Build.Pkgs: 'IntelFsp2Pkg,IntelFsp2WrapperPkg'
Build.Targets: 'DEBUG,RELEASE,NO-TARGET,NOOPT'