You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
930 B
41 lines
930 B
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "[ BUILD RELEASE ]"
|
|
BIN_DIR=$(pwd)/bin/
|
|
rm -rf "$BIN_DIR"
|
|
mkdir -p "$BIN_DIR"
|
|
|
|
cp sync.toml "$BIN_DIR"
|
|
cp restore.toml "$BIN_DIR"
|
|
cp -r filters "$BIN_DIR"
|
|
cp -r scripts/cluster_helper "$BIN_DIR"
|
|
|
|
dist() {
|
|
echo "try build GOOS=$1 GOARCH=$2"
|
|
export GOOS=$g
|
|
export GOARCH=$a
|
|
go build -v -trimpath -o "$BIN_DIR/redis-shake" "./cmd/redis-shake"
|
|
unset GOOS
|
|
unset GOARCH
|
|
echo "build success GOOS=$1 GOARCH=$2"
|
|
|
|
cd "$BIN_DIR"
|
|
tar -czvf ./redis-shake-"$1"-"$2".tar.gz ./sync.toml ./restore.toml ./redis-shake ./filters ./cluster_helper
|
|
cd ..
|
|
}
|
|
|
|
if [ "$1" == "dist" ]; then
|
|
echo "[ DIST ]"
|
|
for g in "linux" "darwin"; do
|
|
for a in "amd64" "arm64"; do
|
|
dist "$g" "$a"
|
|
done
|
|
done
|
|
fi
|
|
|
|
# build the current platform
|
|
echo "try build for current platform"
|
|
go build -v -trimpath -o "$BIN_DIR/redis-shake" "./cmd/redis-shake"
|
|
echo "build success"
|
|
|