From aeca4ec53d0494d32518a39197dca65484ed422c Mon Sep 17 00:00:00 2001 From: Hao Kung <HaoK@users.noreply.github.com> Date: Wed, 16 Mar 2022 10:40:42 -0700 Subject: [PATCH] Fix the missing arm64 sharedfx msi (#40717) --- .azure/pipelines/ci.yml | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/.azure/pipelines/ci.yml b/.azure/pipelines/ci.yml index cdac5c8346b..99c6daae902 100644 --- a/.azure/pipelines/ci.yml +++ b/.azure/pipelines/ci.yml @@ -244,12 +244,27 @@ stages: -noBuildNative /p:DotNetSignType=$(_SignType) $(_BuildArgs) - $(_PublishArgs) $(_InternalRuntimeDownloadArgs) - /p:PublishInstallerBaseVersion=true $(WindowsInstallersLogArgs) displayName: Build Installers + # Windows installers bundle and sharedfx msi for arm64 + - script: ./eng/build.cmd + -ci + -noBuildRepoTasks + -arch arm64 + -sign + -buildInstallers + -noBuildNative + /p:DotNetSignType=$(_SignType) + /p:AssetManifestFileName=aspnetcore-win.xml + $(_BuildArgs) + $(_PublishArgs) + /p:PublishInstallerBaseVersion=true + $(_InternalRuntimeDownloadArgs) + $(WindowsArm64InstallersLogArgs) + displayName: Build ARM64 Installers + # A few files must also go to the VS package feed. - ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest'), ne(variables.PostBuildSign, 'true')) }}: - task: NuGetCommand@2 -- GitLab