mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-08 22:31:04 +00:00
157 lines
2.5 KiB
Bash
Executable File
157 lines
2.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
export COPYFILE_DISABLE=true
|
|
|
|
distFiles=(README.md LICENSE) # apart from the binary itself
|
|
version=$(git describe --always --dirty)
|
|
date=$(date +%s)
|
|
user=$(whoami)
|
|
host=$(hostname)
|
|
host=${host%%.*}
|
|
ldflags="-w -X main.Version $version -X main.BuildStamp $date -X main.BuildUser $user -X main.BuildHost $host"
|
|
|
|
build() {
|
|
go vet ./... || exit 1
|
|
|
|
if command -v godep >/dev/null ; then
|
|
godep=godep
|
|
else
|
|
echo "Warning: no godep, using \"go get\" instead."
|
|
echo "Try \"go get github.com/tools/godep\"."
|
|
go get -d ./cmd/syncthing
|
|
godep=
|
|
fi
|
|
${godep} go build $* -ldflags "$ldflags" ./cmd/syncthing
|
|
${godep} go build -ldflags "$ldflags" ./cmd/stcli
|
|
}
|
|
|
|
assets() {
|
|
godep go run cmd/assets/assets.go gui > auto/gui.files.go
|
|
}
|
|
|
|
test() {
|
|
godep go test -cpu=1,2,4 ./...
|
|
}
|
|
|
|
sign() {
|
|
if git describe --exact-match 2>/dev/null >/dev/null ; then
|
|
# HEAD is a tag
|
|
id=BCE524C7
|
|
if gpg --list-keys "$id" >/dev/null 2>&1 ; then
|
|
gpg -ab -u "$id" "$1"
|
|
fi
|
|
fi
|
|
}
|
|
|
|
tarDist() {
|
|
name="$1"
|
|
rm -rf "$name"
|
|
mkdir -p "$name"
|
|
cp syncthing "${distFiles[@]}" "$name"
|
|
sign "$name/syncthing"
|
|
tar zcvf "$name.tar.gz" "$name"
|
|
rm -rf "$name"
|
|
}
|
|
|
|
zipDist() {
|
|
name="$1"
|
|
rm -rf "$name"
|
|
mkdir -p "$name"
|
|
cp syncthing.exe "${distFiles[@]}" "$name"
|
|
sign "$name/syncthing.exe"
|
|
zip -r "$name.zip" "$name"
|
|
rm -rf "$name"
|
|
}
|
|
|
|
deps() {
|
|
godep save ./cmd/syncthing ./cmd/assets ./cmd/stcli ./discover/cmd/discosrv
|
|
}
|
|
|
|
case "$1" in
|
|
"")
|
|
shift
|
|
build $*
|
|
;;
|
|
|
|
race)
|
|
build -race
|
|
;;
|
|
|
|
test)
|
|
test
|
|
;;
|
|
|
|
tar)
|
|
rm -f *.tar.gz *.zip
|
|
test || exit 1
|
|
assets
|
|
build
|
|
|
|
eval $(go env)
|
|
name="syncthing-$GOOS-$GOARCH-$version"
|
|
|
|
tarDist "$name"
|
|
;;
|
|
|
|
all)
|
|
rm -f *.tar.gz *.zip
|
|
test || exit 1
|
|
assets
|
|
|
|
for os in darwin-amd64 linux-386 linux-amd64 freebsd-amd64 windows-amd64 windows-386 ; do
|
|
export GOOS=${os%-*}
|
|
export GOARCH=${os#*-}
|
|
|
|
build
|
|
|
|
name="syncthing-$os-$version"
|
|
case $GOOS in
|
|
windows)
|
|
zipDist "$name"
|
|
rm -f syncthing.exe
|
|
;;
|
|
*)
|
|
tarDist "$name"
|
|
rm -f syncthing
|
|
;;
|
|
esac
|
|
done
|
|
|
|
export GOOS=linux
|
|
export GOARCH=arm
|
|
|
|
export GOARM=7
|
|
build
|
|
tarDist "syncthing-linux-armv7-$version"
|
|
|
|
export GOARM=6
|
|
build
|
|
tarDist "syncthing-linux-armv6-$version"
|
|
|
|
export GOARM=5
|
|
build
|
|
tarDist "syncthing-linux-armv5-$version"
|
|
|
|
;;
|
|
|
|
upload)
|
|
tag=$(git describe)
|
|
shopt -s nullglob
|
|
for f in *.tar.gz *.zip *.asc ; do
|
|
relup calmh/syncthing "$tag" "$f"
|
|
done
|
|
;;
|
|
|
|
deps)
|
|
deps
|
|
;;
|
|
|
|
assets)
|
|
assets
|
|
;;
|
|
|
|
*)
|
|
echo "Unknown build parameter $1"
|
|
;;
|
|
esac
|