You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/build.sh

11 lines
260 B

#!/bin/sh -eux
glide install -v
export CGO_ENABLED=0
export GOARCH=amd64
mkdir -p bin
GOOS=darwin go build -o bin/packer-builder-vsphere.macos
GOOS=linux go build -o bin/packer-builder-vsphere.linux
GOOS=windows go build -o bin/packer-builder-vsphere.exe