
This commit includes updates that affects the build, testing, and deployment of Tile38. - The root level build.sh has been broken up into multiple scripts and placed in the "scripts" directory. - The vendor directory has been updated to follow the Go modules rules, thus `make` should work on isolated environments. Also some vendored packages may have been updated to a later version, if needed. - The Makefile has been updated to allow for making single binaries such as `make tile38-server`. There is some scaffolding during the build process, so from now on all binaries should be made using make. For example, to run a development version of the tile38-cli binary, do this: make tile38-cli && ./tile38-cli not this: go run cmd/tile38-cli/main.go - Travis.CI docker push script has been updated to address a change to Docker's JSON repo meta output, which in turn fixes a bug where new Tile38 versions were not being properly pushed to Docker
47 lines
1012 B
Bash
Executable File
47 lines
1012 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
cd $(dirname "${BASH_SOURCE[0]}")/..
|
|
|
|
PLATFORM="$1"
|
|
GOOS="$2"
|
|
GOARCH="$3"
|
|
VERSION=$(git describe --tags --abbrev=0)
|
|
|
|
echo Packaging $PLATFORM Binary
|
|
|
|
# Remove previous build directory, if needed.
|
|
bdir=tile38-$VERSION-$GOOS-$GOARCH
|
|
rm -rf packages/$bdir && mkdir -p packages/$bdir
|
|
|
|
# Make the binaries.
|
|
GOOS=$GOOS GOARCH=$GOARCH make all
|
|
rm -f tile38-luamemtest # not needed
|
|
|
|
# Copy the executable binaries.
|
|
if [ "$GOOS" == "windows" ]; then
|
|
mv tile38-server packages/$bdir/tile38-server.exe
|
|
mv tile38-cli packages/$bdir/tile38-cli.exe
|
|
mv tile38-benchmark packages/$bdir/tile38-benchmark.exe
|
|
else
|
|
mv tile38-server packages/$bdir
|
|
mv tile38-cli packages/$bdir
|
|
mv tile38-benchmark packages/$bdir
|
|
fi
|
|
|
|
# Copy documention and license.
|
|
cp README.md packages/$bdir
|
|
cp CHANGELOG.md packages/$bdir
|
|
cp LICENSE packages/$bdir
|
|
|
|
# Compress the package.
|
|
cd packages
|
|
if [ "$GOOS" == "linux" ]; then
|
|
tar -zcf $bdir.tar.gz $bdir
|
|
else
|
|
zip -r -q $bdir.zip $bdir
|
|
fi
|
|
|
|
# Remove build directory.
|
|
rm -rf $bdir
|