Files
runner-images-temp/images/ubuntu/scripts/build/install-bicep.sh
T

15 lines
509 B
Bash
Raw Normal View History

2021-06-24 03:13:00 -05:00
#!/bin/bash -e
################################################################################
2023-11-22 21:49:23 +01:00
## File: install-bicep.sh
## Desc: Install bicep cli
2021-06-24 03:13:00 -05:00
################################################################################
source $HELPER_SCRIPTS/install.sh
# Install Bicep CLI
bicep_binary_path=$(download_with_retry "https://github.com/Azure/bicep/releases/latest/download/bicep-linux-x64")
2021-06-24 03:13:00 -05:00
# Mark it as executable
install "$bicep_binary_path" /usr/local/bin/bicep
2021-06-24 03:13:00 -05:00
2023-11-22 21:49:23 +01:00
invoke_tests "Tools" "Bicep"