Merge branch '#7253-build-script-capitalization'
This commit is contained in:
commit
864ea7084d
131
scripts/build.sh
131
scripts/build.sh
|
@ -5,63 +5,109 @@
|
||||||
ALL_XC_ARCH="386 amd64 arm arm64 ppc64le"
|
ALL_XC_ARCH="386 amd64 arm arm64 ppc64le"
|
||||||
ALL_XC_OS="linux darwin windows freebsd openbsd solaris"
|
ALL_XC_OS="linux darwin windows freebsd openbsd solaris"
|
||||||
|
|
||||||
|
# Exit immediately if a command fails
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
# Validates that a necessary tool is on the PATH
|
||||||
|
function validateToolPresence
|
||||||
|
{
|
||||||
|
local TOOLNAME=$1
|
||||||
|
which ${TOOLNAME} >/dev/null || echo "${TOOLNAME} is not on the path. Exiting..."
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# Validates that all used tools are present; exits when any is not found
|
||||||
|
function validatePreconditions
|
||||||
|
{
|
||||||
|
echo "==> Checking for necessary tools..."
|
||||||
|
validateToolPresence realpath
|
||||||
|
validateToolPresence dirname
|
||||||
|
validateToolPresence tr
|
||||||
|
validateToolPresence find
|
||||||
|
}
|
||||||
|
|
||||||
# Get the parent directory of where this script is.
|
# Get the parent directory of where this script is.
|
||||||
SOURCE="${BASH_SOURCE[0]}"
|
# NOTE: I'm unsure why you don't just use realpath like below
|
||||||
while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done
|
function enterPackerSourceDir
|
||||||
DIR="$( cd -P "$( dirname "$SOURCE" )/.." && pwd )"
|
{
|
||||||
|
echo "==> Entering Packer source dir..."
|
||||||
|
local BUILD_SCRIPT_PATH="${BASH_SOURCE[0]}"
|
||||||
|
SOURCEDIR=$(dirname $(dirname $(realpath "${BUILD_SCRIPT_PATH}")))
|
||||||
|
cd ${SOURCEDIR}
|
||||||
|
}
|
||||||
|
|
||||||
# Change into that directory
|
function ensureOutputStructure {
|
||||||
cd $DIR
|
echo "==> Ensuring output directories are present..."
|
||||||
|
|
||||||
# Delete the old dir
|
|
||||||
echo "==> Removing old directory..."
|
|
||||||
rm -f bin/*
|
|
||||||
rm -rf pkg/*
|
|
||||||
mkdir -p bin/
|
mkdir -p bin/
|
||||||
|
mkdir -p pkg/
|
||||||
|
}
|
||||||
|
|
||||||
|
function cleanOutputDirs {
|
||||||
|
echo "==> Removing old builds..."
|
||||||
|
rm -f bin/*
|
||||||
|
rm -fr pkg/*
|
||||||
|
}
|
||||||
|
|
||||||
|
function lowerCaseOSType {
|
||||||
|
local OS_TYPE=${OSTYPE:=`uname`}
|
||||||
|
echo "${OS_TYPE}" | tr "[:upper:]" "[:lower:]"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Returns the OS appropriate path separator
|
||||||
|
function getPathSeparator {
|
||||||
# helpers for Cygwin-hosted builds
|
# helpers for Cygwin-hosted builds
|
||||||
: ${OSTYPE:=`uname`}
|
case "$(lowerCaseOSType)" in
|
||||||
|
mingw*|msys*|cygwin*)
|
||||||
case $OSTYPE in
|
|
||||||
MINGW*|MSYS*|cygwin|CYGWIN*)
|
|
||||||
# cygwin only translates ';' to ':' on select environment variables
|
# cygwin only translates ';' to ':' on select environment variables
|
||||||
PATHSEP=';'
|
echo ';'
|
||||||
;;
|
;;
|
||||||
*) PATHSEP=':'
|
*) echo ':'
|
||||||
esac
|
|
||||||
|
|
||||||
function convert_path() {
|
|
||||||
local flag
|
|
||||||
[ "${1:0:1}" = '-' ] && { flag="$1"; shift; }
|
|
||||||
|
|
||||||
[ -n "$1" ] || return 0
|
|
||||||
case ${OSTYPE:-`uname`} in
|
|
||||||
cygwin|CYGWIN*)
|
|
||||||
cygpath $flag -- "$1"
|
|
||||||
;;
|
|
||||||
*) echo "$1"
|
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
# XXX works in MINGW?
|
function convertPathOnCygwin() {
|
||||||
which go &>/dev/null || PATH+=":`convert_path "${GOROOT:?}"`/bin"
|
local flag
|
||||||
|
local somePath
|
||||||
|
if [ "${1:0:1}" = '-' ]; then
|
||||||
|
flag=$1
|
||||||
|
somePath=$2
|
||||||
|
else
|
||||||
|
somePath=$1
|
||||||
|
fi
|
||||||
|
|
||||||
OLDIFS="$IFS"
|
[ -n "${somePath}" ] || return 0
|
||||||
|
case "$(lowerCaseOSType)" in
|
||||||
|
cygwin*)
|
||||||
|
cygpath ${flag} -- "${somePath}"
|
||||||
|
;;
|
||||||
|
*) echo "${somePath}"
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
enterPackerSourceDir
|
||||||
|
ensureOutputStructure
|
||||||
|
cleanOutputDirs
|
||||||
|
|
||||||
|
PATHSEP=$(getPathSeparator)
|
||||||
|
|
||||||
|
# XXX works in MINGW?
|
||||||
|
# FIXME: What if go is not in the PATH and GOROOT isn't set?
|
||||||
|
which go &>/dev/null || PATH+=":`convertPathOnCygwin "${GOROOT:?}"`/bin"
|
||||||
|
|
||||||
|
OLDIFS="${IFS}"
|
||||||
|
|
||||||
# make sure GOPATH is consistent - Windows binaries can't handle Cygwin-style paths
|
# make sure GOPATH is consistent - Windows binaries can't handle Cygwin-style paths
|
||||||
IFS="$PATHSEP"
|
IFS="${PATHSEP}"
|
||||||
for d in ${GOPATH:-$(go env GOPATH)}; do
|
for d in ${GOPATH:-$(go env GOPATH)}; do
|
||||||
_GOPATH+="${_GOPATH:+$PATHSEP}$(convert_path --windows "$d")"
|
_GOPATH+="${_GOPATH:+${PATHSEP}}$(convertPathOnCygwin --windows "${d}")"
|
||||||
done
|
done
|
||||||
GOPATH="$_GOPATH"
|
GOPATH="$_GOPATH"
|
||||||
|
|
||||||
# locate 'gox' and traverse GOPATH if needed
|
# locate 'gox' and traverse GOPATH if needed
|
||||||
which "${GOX:=gox}" &>/dev/null || {
|
which "${GOX:=gox}" &>/dev/null || {
|
||||||
for d in $GOPATH; do
|
for d in ${GOPATH}; do
|
||||||
GOX="$(convert_path --unix "$d")/bin/gox"
|
GOX="$(convertPathOnCygwin --unix "${d}")/bin/gox"
|
||||||
[ -x "$GOX" ] && break || unset GOX
|
[ -x "${GOX}" ] && break || unset GOX
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
IFS="$OLDIFS"
|
IFS="$OLDIFS"
|
||||||
|
@ -86,17 +132,18 @@ ${GOX:?command not found} \
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# trim GOPATH to first element
|
# trim GOPATH to first element
|
||||||
IFS="$PATHSEP"
|
IFS="${PATHSEP}"
|
||||||
MAIN_GOPATH=($GOPATH)
|
# FIXME: How do you know that the first path of GOPATH is the main GOPATH? Or is the main GOPATH meant to be the first path in GOPATH?
|
||||||
MAIN_GOPATH="$(convert_path --unix "$MAIN_GOPATH")"
|
MAIN_GOPATH=(${GOPATH})
|
||||||
IFS=$OLDIFS
|
MAIN_GOPATH="$(convertPathOnCygwin --unix "${MAIN_GOPATH[0]}")"
|
||||||
|
IFS="${OLDIFS}"
|
||||||
|
|
||||||
# Copy our OS/Arch to the bin/ directory
|
# Copy our OS/Arch to the bin/ directory
|
||||||
echo "==> Copying binaries for this platform..."
|
echo "==> Copying binaries for this platform..."
|
||||||
DEV_PLATFORM="./pkg/$(go env GOOS)_$(go env GOARCH)"
|
DEV_PLATFORM="./pkg/${XC_OS}_${XC_ARCH}"
|
||||||
for F in $(find ${DEV_PLATFORM} -mindepth 1 -maxdepth 1 -type f 2>/dev/null); do
|
for F in $(find ${DEV_PLATFORM} -mindepth 1 -maxdepth 1 -type f 2>/dev/null); do
|
||||||
cp -v ${F} bin/
|
cp -v ${F} bin/
|
||||||
cp -v ${F} ${MAIN_GOPATH}/bin/
|
cp -v ${F} "${MAIN_GOPATH}/bin/"
|
||||||
done
|
done
|
||||||
|
|
||||||
# Done!
|
# Done!
|
||||||
|
|
Loading…
Reference in New Issue