syncthing/build.sh

49 lines
1.2 KiB
Bash
Raw Normal View History

2013-12-22 00:16:49 +01:00
#!/bin/bash
version=$(git describe --always)
2014-01-06 06:11:19 +01:00
buildDir=dist
2013-12-22 00:16:49 +01:00
2014-01-05 23:54:57 +01:00
if [[ -z $1 ]] ; then
go test ./... || exit 1
2014-01-05 23:54:57 +01:00
go build -ldflags "-X main.Version $version" \
&& nrsc syncthing gui
else
go test ./... || exit 1
2013-12-30 16:04:51 +01:00
2014-01-06 06:11:19 +01:00
rm -rf "$buildDir"
mkdir -p "$buildDir" || exit 1
2013-12-22 23:13:51 +01:00
2014-01-05 23:54:57 +01:00
for goos in darwin linux freebsd ; do
for goarch in amd64 386 ; do
echo "$goos-$goarch"
export GOOS="$goos"
export GOARCH="$goarch"
export name="syncthing-$goos-$goarch"
go build -ldflags "-X main.Version $version" \
&& nrsc syncthing gui \
&& mkdir -p "$name" \
2014-01-06 06:11:19 +01:00
&& cp syncthing "$buildDir/$name" \
2014-01-05 23:54:57 +01:00
&& cp README.md LICENSE "$name" \
&& mv syncthing "$name" \
2014-01-06 06:11:19 +01:00
&& tar zcf "$buildDir/$name.tar.gz" "$name" \
2014-01-05 23:54:57 +01:00
&& rm -r "$name"
done
2014-01-01 14:18:11 +01:00
done
2014-01-05 23:54:57 +01:00
for goos in windows ; do
for goarch in amd64 386 ; do
echo "$goos-$goarch"
export GOOS="$goos"
export GOARCH="$goarch"
export name="syncthing-$goos-$goarch"
go build -ldflags "-X main.Version $version" \
&& nrsc syncthing.exe gui \
&& mkdir -p "$name" \
2014-01-06 06:11:19 +01:00
&& cp syncthing.exe "$buildDir/$name.exe" \
2014-01-05 23:54:57 +01:00
&& cp README.md LICENSE "$name" \
2014-01-06 06:11:19 +01:00
&& zip -qr "$buildDir/$name.zip" "$name" \
2014-01-05 23:54:57 +01:00
&& rm -r "$name"
done
2013-12-22 00:16:49 +01:00
done
2014-01-05 23:54:57 +01:00
fi