mirror of
https://github.com/actions/runner-images.git
synced 2025-12-19 00:06:57 +00:00
13 lines
604 B
PowerShell
13 lines
604 B
PowerShell
################################################################################
|
|
## File: Install-AzureCli.ps1
|
|
## Desc: Install Azure CLI
|
|
################################################################################
|
|
|
|
Choco-Install -PackageName azure-cli
|
|
|
|
$AzureCliExtensionPath = Join-Path $Env:CommonProgramFiles 'AzureCliExtensionDirectory'
|
|
New-Item -ItemType "directory" -Path $AzureCliExtensionPath
|
|
|
|
[Environment]::SetEnvironmentVariable("AZURE_EXTENSION_DIR", $AzureCliExtensionPath, [System.EnvironmentVariableTarget]::Machine)
|
|
|
|
Invoke-PesterTests -TestFile "CLI.Tools" -TestName "Azure CLI" |