mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 03:27:05 +00:00
* add missing tests * fix naming and nvm test * fix containers test and bring pwsh test back * remove pwsh test * small fix
15 lines
647 B
Bash
15 lines
647 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: azure-devops-cli.sh
|
|
## Desc: Installed Azure DevOps CLI (az devops)
|
|
################################################################################
|
|
|
|
# AZURE_EXTENSION_DIR shell variable defines where modules are installed
|
|
# https://docs.microsoft.com/en-us/cli/azure/azure-cli-extensions-overview
|
|
export AZURE_EXTENSION_DIR=/opt/az/azcliextensions
|
|
echo "AZURE_EXTENSION_DIR=$AZURE_EXTENSION_DIR" | tee -a /etc/environment
|
|
|
|
# install azure devops Cli extension
|
|
az extension add -n azure-devops
|
|
|
|
invoke_tests "CLI.Tools" "Azure DevOps CLI" |