mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +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
14 lines
644 B
Bash
14 lines
644 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: terraform.sh
|
|
## Desc: Installs terraform
|
|
################################################################################
|
|
|
|
|
|
# Install Terraform
|
|
TERRAFORM_VERSION=$(curl -s https://checkpoint-api.hashicorp.com/v1/check/terraform | jq -r .current_version)
|
|
curl -LO "https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip"
|
|
unzip "terraform_${TERRAFORM_VERSION}_linux_amd64.zip" -d /usr/local/bin
|
|
rm -f "terraform_${TERRAFORM_VERSION}_linux_amd64.zip"
|
|
|
|
invoke_tests "Tools" "Terraform" |