mirror of https://github.com/tidwall/tile38.git
allow for testing go:tip
This commit is contained in:
parent
d178133383
commit
865bbf7d19
13
build.sh
13
build.sh
|
@ -14,12 +14,16 @@ if [ "$PROTECTED_MODE" == "no" ]; then
|
||||||
LDFLAGS="$LDFLAGS -X github.com/tidwall/tile38/core.ProtectedMode=no"
|
LDFLAGS="$LDFLAGS -X github.com/tidwall/tile38/core.ProtectedMode=no"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Check go install
|
||||||
if [ "$(which go)" == "" ]; then
|
if [ "$(which go)" == "" ]; then
|
||||||
echo "error: Go is not installed. Please download and follow installation instructions at https://golang.org/dl to continue."
|
echo "error: Go is not installed. Please download and follow installation instructions at https://golang.org/dl to continue."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
vercomp () {
|
# Check go version
|
||||||
|
GOVERS="$(go version | cut -d " " -f 3)"
|
||||||
|
if [ "$GOVERS" != "devel" ]; then
|
||||||
|
vercomp () {
|
||||||
if [[ $1 == $2 ]]
|
if [[ $1 == $2 ]]
|
||||||
then
|
then
|
||||||
echo "0"
|
echo "0"
|
||||||
|
@ -52,11 +56,8 @@ vercomp () {
|
||||||
done
|
done
|
||||||
echo "0"
|
echo "0"
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
GOVERS="${GOVERS:2}"
|
||||||
GOVERS="$(go version | cut -d " " -f 3)"
|
|
||||||
GOVERS="${GOVERS:2}"
|
|
||||||
if [ "$GOVERS" != "devel" ]; then
|
|
||||||
EQRES=$(vercomp "$GOVERS" "1.5")
|
EQRES=$(vercomp "$GOVERS" "1.5")
|
||||||
if [ "$EQRES" == "-1" ]; then
|
if [ "$EQRES" == "-1" ]; then
|
||||||
echo "error: Go '1.5' or greater is required and '$GOVERS' is currently installed. Please upgrade Go at https://golang.org/dl to continue."
|
echo "error: Go '1.5' or greater is required and '$GOVERS' is currently installed. Please upgrade Go at https://golang.org/dl to continue."
|
||||||
|
|
Loading…
Reference in New Issue