2016-01-28 01:37:29 +00:00
|
|
|
#!/usr/bin/env bash
|
2015-06-01 11:46:21 +00:00
|
|
|
#
|
2015-09-28 06:21:00 +00:00
|
|
|
# This script builds the application from source for multiple platforms.
|
2015-06-01 11:46:21 +00:00
|
|
|
set -e
|
|
|
|
|
|
|
|
# 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
|
2015-09-28 06:21:00 +00:00
|
|
|
cd "$DIR"
|
2015-06-01 11:46:21 +00:00
|
|
|
|
|
|
|
# Get the git commit
|
2016-03-17 18:57:46 +00:00
|
|
|
GIT_COMMIT="$(git rev-parse HEAD)"
|
|
|
|
GIT_DIRTY="$(test -n "`git status --porcelain`" && echo "+CHANGES" || true)"
|
2015-06-01 11:46:21 +00:00
|
|
|
|
2015-09-28 06:21:00 +00:00
|
|
|
# Determine the arch/os combos we're building for
|
|
|
|
XC_ARCH=${XC_ARCH:-"386 amd64 arm"}
|
2016-06-28 21:30:02 +00:00
|
|
|
XC_OS=${XC_OS:-darwin windows linux}
|
2015-06-01 11:46:21 +00:00
|
|
|
|
2015-09-28 06:21:00 +00:00
|
|
|
# Delete the old dir
|
|
|
|
echo "==> Removing old directory..."
|
|
|
|
rm -f bin/*
|
|
|
|
rm -rf pkg/*
|
|
|
|
mkdir -p bin/
|
2015-06-01 11:46:21 +00:00
|
|
|
|
2015-09-28 06:21:00 +00:00
|
|
|
# If its dev mode, only build for ourself
|
2015-09-29 09:27:55 +00:00
|
|
|
if [[ "${NOMAD_DEV}" ]]; then
|
2015-09-28 06:21:00 +00:00
|
|
|
XC_OS=$(go env GOOS)
|
|
|
|
XC_ARCH=$(go env GOARCH)
|
2015-06-01 11:46:21 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Build!
|
2015-09-28 06:21:00 +00:00
|
|
|
echo "==> Building..."
|
|
|
|
gox \
|
|
|
|
-os="${XC_OS}" \
|
2016-05-07 19:12:04 +00:00
|
|
|
-os="!dragonfly" \
|
|
|
|
-os="!netbsd" \
|
2015-09-28 06:21:00 +00:00
|
|
|
-os="!openbsd" \
|
2016-05-07 19:12:04 +00:00
|
|
|
-os="!solaris" \
|
2015-09-28 06:21:00 +00:00
|
|
|
-arch="${XC_ARCH}" \
|
2015-09-28 06:58:31 +00:00
|
|
|
-osarch="!linux/arm !darwin/386" \
|
2016-03-17 18:57:46 +00:00
|
|
|
-ldflags "-X main.GitCommit='${GIT_COMMIT}${GIT_DIRTY}'" \
|
2015-12-15 19:12:13 +00:00
|
|
|
-cgo \
|
2015-09-28 06:21:00 +00:00
|
|
|
-output "pkg/{{.OS}}_{{.Arch}}/nomad" \
|
|
|
|
.
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
# 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/
|
|
|
|
cp ${F} ${MAIN_GOPATH}/bin/
|
|
|
|
done
|
|
|
|
|
2015-09-30 19:54:59 +00:00
|
|
|
if [[ "x${NOMAD_DEV}" == "x" ]]; then
|
2015-09-28 06:21:00 +00:00
|
|
|
# Zip and copy to the dist dir
|
|
|
|
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
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Done!
|
|
|
|
echo
|
|
|
|
echo "==> Results:"
|
|
|
|
ls -hl bin/
|