From 92ac6d9a65b6e1257aaf28cf6663337dc59686cd Mon Sep 17 00:00:00 2001 From: Oliver Smith-Denny Date: Tue, 10 Dec 2024 08:51:29 -0800 Subject: [PATCH] [SQUASH ON REBASE] Remove Windows ARM BaseTools Build The Windows ARM BaseTools build is not used any longer, it used to work on Windows ARM64, but that support is not there anymore. Windows ARM64 is built for BaseTools instead and there are no current Windows ARM hosts, nor likely ever to be any more. This can be squashed with the original commit adding CI (or the commit adding these BaseTool builds, if separate). --- .azurepipelines/BaseTools-Build-For-Publication.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.azurepipelines/BaseTools-Build-For-Publication.yml b/.azurepipelines/BaseTools-Build-For-Publication.yml index ee8711d4be..16babdebb5 100644 --- a/.azurepipelines/BaseTools-Build-For-Publication.yml +++ b/.azurepipelines/BaseTools-Build-For-Publication.yml @@ -87,9 +87,6 @@ jobs: TARGET_x86: Build.Targets: 'IA32' Build.TargetFolder: 'Win32' - TARGET_ARM: - Build.Targets: 'ARM' - Build.TargetFolder: 'Win32' TARGET_AArch64: Build.Targets: 'AARCH64' Build.TargetFolder: 'Win64' @@ -192,7 +189,6 @@ jobs: mv $(Pipeline.Workspace)/$(linux_artifact_name)_X64 $(Build.StagingDirectory)/$(temp_publication_directory)/Linux-x86; mv $(Pipeline.Workspace)/$(linux_artifact_name)_AARCH64 $(Build.StagingDirectory)/$(temp_publication_directory)/Linux-ARM-64; mv $(Pipeline.Workspace)/$(windows_artifact_name)_IA32 $(Build.StagingDirectory)/$(temp_publication_directory)/Windows-x86; - mv $(Pipeline.Workspace)/$(windows_artifact_name)_ARM $(Build.StagingDirectory)/$(temp_publication_directory)/Windows-ARM; mv $(Pipeline.Workspace)/$(windows_artifact_name)_AARCH64 $(Build.StagingDirectory)/$(temp_publication_directory)/Windows-ARM-64; displayName: Stage Package Files