mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 11:37:00 +00:00
13 lines
605 B
Bash
13 lines
605 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 -qq "packer_${PACKER_VERSION}_linux_amd64.zip" -d /usr/local/bin
|
|
rm -f "packer_${PACKER_VERSION}_linux_amd64.zip"
|
|
|
|
invoke_tests "Tools" "Packer" |