tile38/build.sh

58 lines
1.5 KiB
Bash
Raw Normal View History

2016-03-05 02:08:16 +03:00
#!/bin/bash
set -e
VERSION="0.0.1"
2016-03-08 16:12:39 +03:00
PROTECTED_MODE="no"
# Hardcode some values to the core package
LDFLAGS="$LDFLAGS -X github.com/tidwall/tile38/core.Version=${VERSION}"
LDFLAGS="$LDFLAGS -X github.com/tidwall/tile38/core.GitSHA=$(git rev-parse --short HEAD)"
LDFLAGS="$LDFLAGS -X github.com/tidwall/tile38/core.BuildTime=$(date +%FT%T%z)"
if [ "$PROTECTED_MODE" == "no" ]; then
LDFLAGS="$LDFLAGS -X github.com/tidwall/tile38/core.ProtectedMode=no"
fi
2016-03-05 02:08:16 +03:00
2016-03-05 02:28:32 +03:00
export GO15VENDOREXPERIMENT=1
2016-03-05 02:08:16 +03:00
cd $(dirname "${BASH_SOURCE[0]}")
OD="$(pwd)"
2016-03-08 03:37:16 +03:00
# temp directory for storing isolated environment.
2016-03-05 02:28:32 +03:00
TMP="$(mktemp -d -t tile38.XXXX)"
2016-03-05 02:08:16 +03:00
function rmtemp {
rm -rf "$TMP"
}
trap rmtemp EXIT
2016-03-08 03:37:16 +03:00
if [ "$NOCOPY" != "1" ]; then
# copy all files to an isloated directory.
WD="$TMP/src/github.com/tidwall/tile38"
GOPATH="$TMP"
for file in `find . -type f`; do
# TODO: use .gitignore to ignore, or possibly just use git to determine the file list.
if [[ "$file" != "." && "$file" != ./.git* && "$file" != ./data* && "$file" != ./tile38-* ]]; then
mkdir -p "$WD/$(dirname "${file}")"
cp -P "$file" "$WD/$(dirname "${file}")"
fi
done
cd $WD
fi
2016-03-08 16:21:12 +03:00
#core/gen.sh
2016-03-05 02:08:16 +03:00
# build and store objects into original directory.
go build -ldflags "$LDFLAGS" -o "$OD/tile38-server" cmd/tile38-server/*.go
go build -ldflags "$LDFLAGS" -o "$OD/tile38-cli" cmd/tile38-cli/*.go
2016-03-07 16:44:38 +03:00
# test if requested
if [ "$1" == "test" ]; then
$OD/tile38-server -p 9876 -d "$TMP" -q &
PID=$!
function testend {
kill $PID &
}
trap testend EXIT
go test $(go list ./... | grep -v /vendor/)
fi
2016-03-05 02:08:16 +03:00