gorush/script/build.sh

16 lines
391 B
Bash
Raw Normal View History

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