terraform/scripts/build.sh

99 lines
2.4 KiB
Bash
Raw Normal View History

2015-06-30 19:52:11 +02:00
#!/usr/bin/env bash
2014-06-26 19:07:31 +02:00
#
2014-08-28 18:52:10 +02:00
# This script builds the application from source for multiple platforms.
2014-06-26 19:07:31 +02:00
# Get the parent directory of where this script is.
SOURCE="${BASH_SOURCE[0]}"
while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done
DIR="$( cd -P "$( dirname "$SOURCE" )/.." && pwd )"
# Change into that directory
cd "$DIR"
2014-06-26 19:07:31 +02:00
# Get the git commit
GIT_COMMIT=$(git rev-parse HEAD)
GIT_DIRTY=$(test -n "`git status --porcelain`" && echo "+CHANGES" || true)
2014-08-28 18:52:10 +02:00
# Determine the arch/os combos we're building for
XC_ARCH=${XC_ARCH:-"386 amd64 arm"}
XC_OS=${XC_OS:-linux darwin windows freebsd openbsd}
# Get dependencies unless running in quick mode
if [ "${TF_QUICKDEV}x" == "x" ]; then
echo "==> Getting dependencies..."
go get -d ./...
fi
2014-06-26 19:07:31 +02:00
2014-07-28 19:53:36 +02:00
# Delete the old dir
2014-08-28 18:52:10 +02:00
echo "==> Removing old directory..."
2014-07-28 19:53:36 +02:00
rm -f bin/*
2014-08-28 18:52:10 +02:00
rm -rf pkg/*
2014-08-31 18:31:57 +02:00
mkdir -p bin/
2014-07-28 19:53:36 +02:00
2014-08-29 01:47:14 +02:00
# If its dev mode, only build for ourself
if [ "${TF_DEV}x" != "x" ]; then
XC_OS=$(go env GOOS)
XC_ARCH=$(go env GOARCH)
fi
2014-06-26 19:07:31 +02:00
# Build!
2014-08-28 18:52:10 +02:00
echo "==> Building..."
2014-06-26 19:07:31 +02:00
gox \
2014-08-28 18:52:10 +02:00
-os="${XC_OS}" \
-arch="${XC_ARCH}" \
2014-06-26 19:07:31 +02:00
-ldflags "-X main.GitCommit ${GIT_COMMIT}${GIT_DIRTY}" \
2014-08-28 18:52:10 +02:00
-output "pkg/{{.OS}}_{{.Arch}}/terraform-{{.Dir}}" \
2014-06-26 19:07:31 +02:00
./...
2014-08-28 18:52:10 +02:00
# Make sure "terraform-terraform" is renamed properly
for PLATFORM in $(find ./pkg -mindepth 1 -maxdepth 1 -type d); do
set +e
2014-08-28 19:21:13 +02:00
mv ${PLATFORM}/terraform-terraform.exe ${PLATFORM}/terraform.exe 2>/dev/null
mv ${PLATFORM}/terraform-terraform ${PLATFORM}/terraform 2>/dev/null
set -e
2014-08-28 18:52:10 +02:00
done
2014-09-30 03:18:14 +02:00
# Move all the compiled things to the $GOPATH/bin
GOPATH=${GOPATH:-$(go env GOPATH)}
case $(uname) in
CYGWIN*)
GOPATH="$(cygpath $GOPATH)"
;;
esac
OLDIFS=$IFS
IFS=: MAIN_GOPATH=($GOPATH)
IFS=$OLDIFS
# Create GOPATH/bin if it's doesn't exists
if [ ! -d $MAIN_GOPATH/bin ]; then
echo "==> Creating GOPATH/bin directory..."
mkdir -p $MAIN_GOPATH/bin
fi
2014-08-28 18:52:10 +02:00
# Copy our OS/Arch to the bin/ directory
DEV_PLATFORM="./pkg/$(go env GOOS)_$(go env GOARCH)"
for F in $(find ${DEV_PLATFORM} -mindepth 1 -maxdepth 1 -type f); do
cp ${F} bin/
2014-09-30 03:18:14 +02:00
cp ${F} ${MAIN_GOPATH}/bin/
2014-08-28 18:52:10 +02:00
done
2014-06-26 19:07:31 +02:00
2014-07-28 19:53:36 +02:00
if [ "${TF_DEV}x" = "x" ]; then
# Zip and copy to the dist dir
2014-08-28 18:52:10 +02:00
echo "==> Packaging..."
for PLATFORM in $(find ./pkg -mindepth 1 -maxdepth 1 -type d); do
OSARCH=$(basename ${PLATFORM})
echo "--> ${OSARCH}"
pushd $PLATFORM >/dev/null 2>&1
zip ../${OSARCH}.zip ./*
popd >/dev/null 2>&1
done
2014-07-28 19:53:36 +02:00
fi
2014-06-26 19:07:31 +02:00
# Done!
echo
2014-08-28 18:52:10 +02:00
echo "==> Results:"
2014-06-26 19:07:31 +02:00
ls -hl bin/