packer-cn/scripts/build.sh

57 lines
1.2 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
#
# 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-09-25 18:38:32 -04:00
XC_ARCH=${XC_ARCH:-"386 amd64 arm arm64 ppc64le"}
2017-08-21 15:32:16 -04:00
XC_OS=${XC_OS:-linux darwin windows freebsd openbsd solaris}
# Delete the old dir
echo "==> Removing old directory..."
rm -f bin/*
rm -rf pkg/*
mkdir -p bin/
OLDIFS=$IFS
IFS=:
case $(uname) in
MINGW*|MSYS*)
IFS=";"
;;
esac
# Build!
echo "==> Building..."
2014-09-11 14:51:44 -04:00
set +e
${GOX:-$GOPATH/bin/gox} \
-os="${XC_OS}" \
-arch="${XC_ARCH}" \
-osarch="!darwin/arm !darwin/arm64" \
-ldflags "${GOLDFLAGS}" \
-output "pkg/{{.OS}}_{{.Arch}}/packer" \
.
IFS=$OLDIFS
set -e
# Copy our OS/Arch to the bin/ directory
echo "==> Copying binaries for this platform..."
for F in $(find pkg/$(go env GOOS)_$(go env GOARCH) -mindepth 1 -maxdepth 1 -type f); do
cp -v ${F} bin/
cp -v ${F} ${GOPATH}/bin/
done
# Done!
echo
echo "==> Results:"
ls -hl bin/