Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .azure-pipelines/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,19 +217,6 @@ extends:
displayName: 'Add Git Bash to PATH'
inputs:
filename: ./.azure-pipelines/scripts/windows/setup-git-bash.cmd
# Install Azure CLI on arm64 (not pre-installed on these agents)
- ${{ if eq(dim.poolArch, 'arm64') }}:
- powershell: |
$ProgressPreference = 'SilentlyContinue'
$msi = "$env:TEMP\AzureCLI.msi"
Write-Host "Downloading Azure CLI (x64)..."
Invoke-WebRequest -Uri https://aka.ms/installazurecliwindows -OutFile $msi
Write-Host "Installing Azure CLI..."
Start-Process msiexec.exe -ArgumentList "/i", $msi, "/quiet", "/norestart" -Wait
$azPath = "C:\Program Files (x86)\Microsoft SDKs\Azure\CLI2\wbin"
Write-Host "##vso[task.prependpath]$azPath"
Write-Host "Azure CLI installed."
displayName: 'Install Azure CLI (x64 on ARM64)'
# Install VS 2022 Build Tools on x64 so cv2pdb-strip can locate
# mspdb140.dll. We do not need to do this on ARM64 since we use
# clang's llvm-strip there instead.
Expand Down
Loading