features/test/azure-cli/install_bicep.sh
Paul Yu 133b4cf23c
Optionally install Azure Bicep as part of azure-cli feature (#305)
* Adding azure-cli bicep installer to correctly install on arm64 containers

* Adding a few updates following @joshspicer's review.
2022-11-23 15:18:22 -05:00

16 lines
305 B
Bash

#!/bin/bash
set -e
# Import test library for `check` command
source dev-container-features-test-lib
# Check to make sure the user is vscode
check "user is vscode" whoami | grep vscode
# Bicep-specific tests
check "bicep" bicep --version
check "az bicep" az bicep version
# Report result
reportResults