mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-18 15:56:47 +00:00
* Create symlink for test running * Fix 1604 and 2004 templates * Fix php and haskell running * Minor fix * Fix new added tests * Fix symlink * Minor fix * Fix script permissions * Minor fix * Fix firefox and rust tests * Fix new merged tests
16 lines
648 B
Bash
16 lines
648 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" |