2015-11-04 09:29:26 -05:00
|
|
|
#!/usr/bin/env bash
|
2014-09-02 18:13:55 -04:00
|
|
|
#
|
|
|
|
# This script builds the application from source for multiple platforms.
|
|
|
|
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
|
|
|
|
cd $DIR
|
|
|
|
|
|
|
|
# Determine the arch/os combos we're building for
|
2017-05-15 16:31:38 -04:00
|
|
|
XC_ARCH=${XC_ARCH:-"386 amd64 arm arm64"}
|
2014-09-10 19:10:33 -04:00
|
|
|
XC_OS=${XC_OS:-linux darwin windows freebsd openbsd}
|
2014-09-02 18:13:55 -04:00
|
|
|
|
|
|
|
# Delete the old dir
|
|
|
|
echo "==> Removing old directory..."
|
|
|
|
rm -f bin/*
|
|
|
|
rm -rf pkg/*
|
|
|
|
mkdir -p bin/
|
|
|
|
|
|
|
|
# Build!
|
|
|
|
echo "==> Building..."
|
2014-09-11 14:51:44 -04:00
|
|
|
set +e
|
2014-09-02 18:13:55 -04:00
|
|
|
gox \
|
|
|
|
-os="${XC_OS}" \
|
|
|
|
-arch="${XC_ARCH}" \
|
2017-05-15 16:31:38 -04:00
|
|
|
-osarch="!darwin/arm !darwin/arm64" \
|
2017-05-04 23:30:09 -04:00
|
|
|
-ldflags "${GOLDFLAGS}" \
|
2015-10-21 19:41:58 -04:00
|
|
|
-output "pkg/{{.OS}}_{{.Arch}}/packer" \
|
|
|
|
.
|
2014-09-11 14:51:44 -04:00
|
|
|
set -e
|
2014-09-02 18:13:55 -04:00
|
|
|
|
2014-09-07 18:58:36 -04: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
|
2015-08-10 00:55:59 -04:00
|
|
|
IFS=:
|
|
|
|
case $(uname) in
|
|
|
|
MINGW*)
|
|
|
|
IFS=";"
|
|
|
|
;;
|
|
|
|
MSYS*)
|
|
|
|
IFS=";"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
MAIN_GOPATH=($GOPATH)
|
2014-09-07 18:58:36 -04:00
|
|
|
IFS=$OLDIFS
|
|
|
|
|
2014-09-02 18:13:55 -04:00
|
|
|
# Copy our OS/Arch to the bin/ directory
|
2014-09-07 18:58:36 -04:00
|
|
|
echo "==> Copying binaries for this platform..."
|
2017-05-04 23:45:17 -04:00
|
|
|
DEV_PLATFORM="./pkg/$(go env GOOS)_$(go env GOARCH)"
|
2014-09-02 18:13:55 -04:00
|
|
|
for F in $(find ${DEV_PLATFORM} -mindepth 1 -maxdepth 1 -type f); do
|
|
|
|
cp ${F} bin/
|
2014-09-07 18:58:36 -04:00
|
|
|
cp ${F} ${MAIN_GOPATH}/bin/
|
2014-09-02 18:13:55 -04:00
|
|
|
done
|
|
|
|
|
|
|
|
# Done!
|
|
|
|
echo
|
|
|
|
echo "==> Results:"
|
|
|
|
ls -hl bin/
|