syncthing/build.sh

189 lines
3.0 KiB
Bash
Raw Normal View History

2014-03-17 17:15:59 +00:00
#!/usr/bin/env bash
2013-12-21 23:16:49 +00:00
export COPYFILE_DISABLE=true
export GO386=387 # Don't use SSE on 32 bit builds
distFiles=(README.md LICENSE CONTRIBUTORS) # apart from the binary itself
version=$(git describe --always --dirty)
date=$(git show -s --format=%ct)
user=$(whoami)
2014-04-22 06:25:40 +00:00
host=$(hostname)
host=${host%%.*}
ldflags="-w -X main.Version $version -X main.BuildStamp $date -X main.BuildUser $user -X main.BuildHost $host"
2013-12-21 23:16:49 +00:00
2014-05-12 23:00:57 +00:00
check() {
if ! command -v godep >/dev/null ; then
echo "Error: no godep. Try \"$0 setup\"."
exit 1
fi
}
2014-03-02 22:55:08 +00:00
build() {
2014-05-12 23:00:57 +00:00
check
go vet ./...
2014-05-02 19:59:36 +00:00
2014-05-12 23:00:57 +00:00
godep go build $* -ldflags "$ldflags" ./cmd/syncthing
2014-03-02 22:55:08 +00:00
}
assets() {
2014-05-12 23:00:57 +00:00
check
godep go run cmd/assets/assets.go gui > auto/gui.files.go
2014-03-02 22:55:08 +00:00
}
test() {
2014-05-12 23:00:57 +00:00
check
godep go test -cpu=1,2,4 ./...
}
2014-03-02 22:55:08 +00:00
2014-03-22 20:38:01 +00:00
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
2014-03-22 20:38:01 +00:00
fi
}
2014-03-02 22:55:08 +00:00
tarDist() {
name="$1"
rm -rf "$name"
2014-03-02 22:55:08 +00:00
mkdir -p "$name"
cp syncthing "${distFiles[@]}" "$name"
2014-03-22 20:38:01 +00:00
sign "$name/syncthing"
2014-03-02 22:55:08 +00:00
tar zcvf "$name.tar.gz" "$name"
rm -rf "$name"
}
zipDist() {
name="$1"
rm -rf "$name"
2014-03-02 22:55:08 +00:00
mkdir -p "$name"
for f in "${distFiles[@]}" ; do
sed 's/$/ /' < "$f" > "$name/$f.txt"
done
cp syncthing.exe "$name"
2014-03-22 20:38:01 +00:00
sign "$name/syncthing.exe"
2014-03-02 22:55:08 +00:00
zip -r "$name.zip" "$name"
rm -rf "$name"
}
2014-04-08 13:14:36 +00:00
deps() {
2014-05-12 23:00:57 +00:00
check
2014-05-11 18:40:14 +00:00
godep save ./cmd/syncthing ./cmd/assets ./discover/cmd/discosrv
2014-04-08 13:14:36 +00:00
}
2014-05-12 23:00:57 +00:00
setup() {
echo Installing godep...
go get -u github.com/tools/godep
echo Installing go vet...
go get -u code.google.com/p/go.tools/cmd/vet
}
2014-03-02 22:55:08 +00:00
case "$1" in
"")
2014-04-09 21:00:23 +00:00
shift
build $*
2014-03-02 22:55:08 +00:00
;;
race)
build -race
;;
2014-05-12 23:04:49 +00:00
guidev)
echo "Syncthing is already built for GUI developments. Try:"
echo " STGUIASSETS=~/someDir/gui syncthing"
2014-05-12 23:04:49 +00:00
;;
2014-03-22 20:33:18 +00:00
test)
test
;;
2014-03-02 22:55:08 +00:00
tar)
rm -f *.tar.gz *.zip
2014-03-02 22:55:08 +00:00
test || exit 1
assets
2014-03-02 22:55:08 +00:00
build
eval $(go env)
name="syncthing-$GOOS-$GOARCH-$version"
tarDist "$name"
;;
all)
rm -f *.tar.gz *.zip
2014-03-02 22:55:08 +00:00
test || exit 1
assets
2014-03-02 22:55:08 +00:00
godep go build ./discover/cmd/discosrv
godep go build ./cmd/stpidx
godep go build ./cmd/stcli
for os in darwin-amd64 linux-386 linux-amd64 freebsd-amd64 windows-amd64 windows-386 ; do
2014-03-02 22:55:08 +00:00
export GOOS=${os%-*}
export GOARCH=${os#*-}
build
2014-03-02 22:55:08 +00:00
name="syncthing-$os-$version"
case $GOOS in
windows)
zipDist "$name"
rm -f syncthing.exe
;;
*)
tarDist "$name"
rm -f syncthing
;;
esac
done
2014-03-31 03:59:40 +00:00
export GOOS=linux
export GOARCH=arm
origldflags="$ldflags"
2014-03-31 03:59:40 +00:00
export GOARM=7
ldflags="$origldflags -X main.GoArchExtra v7"
2014-03-31 03:59:40 +00:00
build
tarDist "syncthing-linux-armv7-$version"
export GOARM=6
ldflags="$origldflags -X main.GoArchExtra v6"
2014-03-31 03:59:40 +00:00
build
tarDist "syncthing-linux-armv6-$version"
2014-05-06 11:13:56 +00:00
export GOARM=5
ldflags="$origldflags -X main.GoArchExtra v5"
2014-05-06 11:13:56 +00:00
build
tarDist "syncthing-linux-armv5-$version"
2014-03-02 22:55:08 +00:00
;;
upload)
tag=$(git describe)
shopt -s nullglob
for f in *.tar.gz *.zip *.asc ; do
2014-03-02 22:55:08 +00:00
relup calmh/syncthing "$tag" "$f"
done
;;
2014-04-08 13:14:36 +00:00
deps)
deps
;;
assets)
assets
;;
2014-05-12 23:00:57 +00:00
setup)
setup
;;
2014-03-02 22:55:08 +00:00
*)
echo "Unknown build parameter $1"
;;
esac