syncthing/build.sh

83 lines
2.0 KiB
Bash
Raw Normal View History

2013-12-21 23:16:49 +00:00
#!/bin/bash
version=$(git describe --always)
2014-01-06 05:11:19 +00:00
buildDir=dist
2013-12-21 23:16:49 +00:00
if [[ $1 == "-f" ]] ; then
fast=yes
shift
fi
if [[ $fast != yes ]] ; then
2014-01-09 22:00:23 +00:00
go get -d
2014-01-06 14:50:15 +00:00
go test ./...
fi
if [[ -z $1 ]] ; then
2014-01-05 22:54:57 +00:00
go build -ldflags "-X main.Version $version" \
&& nrsc syncthing gui
elif [[ $1 == "tar" ]] ; then
go build -ldflags "-X main.Version $version" \
&& nrsc syncthing gui \
&& mkdir syncthing-dist \
&& cp syncthing README.md LICENSE syncthing-dist \
&& tar zcvf syncthing-dist.tar.gz syncthing-dist \
&& rm -rf syncthing-dist
elif [[ $1 == "all" ]] ; then
2014-01-06 05:11:19 +00:00
rm -rf "$buildDir"
mkdir -p "$buildDir" || exit 1
2013-12-22 22:13:51 +00:00
2014-01-05 22:54:57 +00: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-07 16:07:46 +00:00
&& cp syncthing "$buildDir/$name" \
2014-01-05 22:54:57 +00:00
&& cp README.md LICENSE "$name" \
&& mv syncthing "$name" \
2014-01-06 05:11:19 +00:00
&& tar zcf "$buildDir/$name.tar.gz" "$name" \
2014-01-05 22:54:57 +00:00
&& rm -r "$name"
done
2014-01-01 13:18:11 +00:00
done
2014-01-09 20:17:41 +00:00
for goos in linux ; do
for goarm in 5 6 7 ; do
for goarch in arm ; do
echo "$goos-${goarch}v$goarm"
export GOARM="$goarm"
export GOOS="$goos"
export GOARCH="$goarch"
export name="syncthing-$goos-${goarch}v$goarm"
go build -ldflags "-X main.Version $version" \
&& nrsc syncthing gui \
&& mkdir -p "$name" \
&& cp syncthing "$buildDir/$name" \
&& cp README.md LICENSE "$name" \
&& mv syncthing "$name" \
&& tar zcf "$buildDir/$name.tar.gz" "$name" \
&& rm -r "$name"
done
done
done
2014-01-05 22:54:57 +00: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-07 11:14:50 +00:00
&& mv syncthing.exe "$buildDir/$name.exe" \
2014-01-05 22:54:57 +00:00
&& cp README.md LICENSE "$name" \
2014-01-06 05:11:19 +00:00
&& zip -qr "$buildDir/$name.zip" "$name" \
2014-01-05 22:54:57 +00:00
&& rm -r "$name"
done
2013-12-21 23:16:49 +00:00
done
2014-01-05 22:54:57 +00:00
fi