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