mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 13:17:54 +00:00
* add tests for cli tools to pester * small fix * remove extra commenting * resolve issues * fix vercel test * remove extra logging
12 lines
477 B
Bash
12 lines
477 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: azure-cli.sh
|
|
## Desc: Installed Azure CLI (az)
|
|
################################################################################
|
|
|
|
source $HELPER_SCRIPTS/invoke-tests.sh
|
|
|
|
# Install Azure CLI (instructions taken from https://docs.microsoft.com/en-us/cli/azure/install-azure-cli)
|
|
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
|
|
|
|
invoke_tests "CLI.Tools" "Azure CLI" |