From b0010036703c96cf4731d35ffa3a1426d147e8c3 Mon Sep 17 00:00:00 2001 From: Dongbo Wang Date: Sun, 21 Mar 2021 15:11:04 -0700 Subject: [PATCH] Update the `minSize` build package filter to be explicit (#15055) --- tools/releaseBuild/azureDevOps/templates/windows-packaging.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/releaseBuild/azureDevOps/templates/windows-packaging.yml b/tools/releaseBuild/azureDevOps/templates/windows-packaging.yml index 08a05a1a1..ef1278b12 100644 --- a/tools/releaseBuild/azureDevOps/templates/windows-packaging.yml +++ b/tools/releaseBuild/azureDevOps/templates/windows-packaging.yml @@ -41,7 +41,7 @@ jobs: - powershell: | $pkgFilter = if ( '$(Architecture)' -eq 'arm' ) { "arm32" } else { '$(Architecture)' } - if ($env:BuildConfiguration -eq 'minSize') { $pkgFilter += '-*' } + if ($env:BuildConfiguration -eq 'minSize') { $pkgFilter += '-gc' } $vstsCommandString = "vso[task.setvariable variable=PkgFilter]$pkgFilter" Write-Host ("sending " + $vstsCommandString)