open-vault/scripts/build.sh

85 lines
2.3 KiB
Bash
Raw Normal View History

2015-07-22 02:06:54 +00:00
#!/usr/bin/env bash
2015-03-04 07:14:18 +00: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"
2016-04-28 00:47:44 +00:00
# Set build tags
2016-04-28 00:59:33 +00:00
BUILD_TAGS="${BUILD_TAGS:-"vault"}"
2016-04-28 00:47:44 +00:00
2015-03-04 07:14:18 +00:00
# Get the git commit
GIT_COMMIT="$(git rev-parse HEAD)"
GIT_DIRTY="$(test -n "`git status --porcelain`" && echo "+CHANGES" || true)"
2015-03-04 07:14:18 +00:00
# Determine the arch/os combos we're building for
2016-05-23 20:14:15 +00:00
XC_ARCH=${XC_ARCH:-"386 amd64"}
XC_OS=${XC_OS:-linux darwin windows freebsd openbsd netbsd solaris}
XC_OSARCH=${XC_OSARCH:-"linux/386 linux/amd64 linux/arm linux/arm64 darwin/386 darwin/amd64 windows/386 windows/amd64 freebsd/386 freebsd/amd64 freebsd/arm openbsd/386 openbsd/amd64 openbsd/arm netbsd/386 netbsd/amd64 netbsd/arm solaris/amd64"}
2015-03-04 07:14:18 +00:00
GOPATH=${GOPATH:-$(go env GOPATH)}
case $(uname) in
CYGWIN*)
GOPATH="$(cygpath $GOPATH)"
;;
esac
2015-03-04 07:14:18 +00:00
# Delete the old dir
echo "==> Removing old directory..."
rm -f bin/*
rm -rf pkg/*
mkdir -p bin/
# If its dev mode, only build for ourself
2016-02-25 16:05:51 +00:00
if [ "${VAULT_DEV_BUILD}x" != "x" ]; then
2015-03-04 07:14:18 +00:00
XC_OS=$(go env GOOS)
XC_ARCH=$(go env GOARCH)
2016-05-24 17:25:50 +00:00
XC_OSARCH=$(go env GOOS)/$(go env GOARCH)
2015-03-04 07:14:18 +00:00
fi
# Build!
echo "==> Building..."
gox \
2016-05-23 20:14:15 +00:00
-osarch="${XC_OSARCH}" \
-gcflags "${GCFLAGS}" \
-ldflags "${LD_FLAGS}-X github.com/hashicorp/vault/version.GitCommit='${GIT_COMMIT}${GIT_DIRTY}'" \
2015-03-04 07:14:18 +00:00
-output "pkg/{{.OS}}_{{.Arch}}/vault" \
2016-04-28 00:47:44 +00:00
-tags="${BUILD_TAGS}" \
2015-03-04 07:14:18 +00:00
.
# Move all the compiled things to the $GOPATH/bin
OLDIFS=$IFS
IFS=: MAIN_GOPATH=($GOPATH)
2015-03-04 07:14:18 +00:00
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
2016-02-25 16:05:51 +00:00
if [ "${VAULT_DEV_BUILD}x" = "x" ]; then
2015-03-04 07:14:18 +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/