gorush/script/build.sh

17 lines
414 B
Bash
Raw Normal View History

#!/bin/sh
OS="darwin linux"
ARCH="amd64"
VERSION=$1
for GOOS in $OS; do
for GOARCH in $ARCH; do
EXE="gorush"
(test "$GOOS" = "windows") && EXE="gorush.exe"
echo "Build: ${GOOS}, Arch: ${GOARCH}, EXE: ${EXE}"
GOOS=$GOOS GOARCH=$GOARCH go build -ldflags="-s -w" -o bin/$GOOS/$GOARCH/${EXE} gorush.go;
tar -C bin/$GOOS/$GOARCH -czf bin/gorush-$VERSION-$GOOS-$GOARCH.tar.gz gorush
done
done