add warump script for az cli (#10126)

This commit is contained in:
kishorekumar-anchala
2024-07-29 15:16:32 +05:30
committed by GitHub
parent cbea23f931
commit fcf7cd18d4

View File

@@ -12,4 +12,11 @@ echo "azure-cli https://docs.microsoft.com/en-us/cli/azure/install-azure-cli-lin
rm -f /etc/apt/sources.list.d/azure-cli.list rm -f /etc/apt/sources.list.d/azure-cli.list
rm -f /etc/apt/sources.list.d/azure-cli.list.save rm -f /etc/apt/sources.list.d/azure-cli.list.save
echo "Warmup 'az'"
az --help > /dev/null
if [ $? -ne 0 ]; then
echo "Command 'az --help' failed"
exit 1
fi
invoke_tests "CLI.Tools" "Azure CLI" invoke_tests "CLI.Tools" "Azure CLI"