syncthing/build.sh

178 lines
3.9 KiB
Bash
Raw Normal View History

2014-03-17 18:15:59 +01:00
#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'
2013-12-22 00:16:49 +01:00
2015-01-22 00:59:08 +01:00
STTRACE=${STTRACE:-}
2014-11-19 12:02:47 +01:00
case "${1:-default}" in
default)
2014-08-18 22:05:26 +02:00
go run build.go
2014-03-02 23:55:08 +01:00
;;
2014-08-11 11:54:48 +02:00
clean)
2014-08-18 22:05:26 +02:00
go run build.go "$1"
2014-08-11 11:54:48 +02:00
;;
2014-08-18 22:05:26 +02:00
test)
2014-09-04 00:23:23 +02:00
ulimit -t 60 &>/dev/null || true
ulimit -d 512000 &>/dev/null || true
ulimit -m 512000 &>/dev/null || true
2015-05-23 15:08:17 +02:00
go run build.go test
2015-05-23 15:17:19 +02:00
;;
bench)
2015-05-23 15:08:17 +02:00
LOGGER_DISCARD=1 go run build.go bench | go run benchfilter.go
;;
2014-08-18 22:05:26 +02:00
tar)
go run build.go "$1"
;;
2014-08-18 22:05:26 +02:00
deps)
go run build.go "$1"
2014-05-13 01:04:49 +02:00
;;
2014-08-18 22:05:26 +02:00
assets)
go run build.go "$1"
2014-03-22 21:33:18 +01:00
;;
2014-08-18 22:05:26 +02:00
xdr)
go run build.go "$1"
;;
2014-08-18 22:05:26 +02:00
translate)
go run build.go "$1"
2014-03-02 23:55:08 +01:00
;;
prerelease)
go run build.go transifex
2015-08-06 11:29:25 +02:00
git add -A gui/assets/ lib/auto/
2015-05-30 13:05:37 +02:00
pushd man ; ./refresh.sh ; popd
git add -A man
echo
echo Changelog:
go run changelog.go
;;
2014-05-06 13:13:56 +02:00
deb)
go run build.go "$1"
;;
2014-08-18 22:05:26 +02:00
noupgrade)
go run build.go -no-upgrade tar
2014-03-02 23:55:08 +01:00
;;
2014-08-18 22:05:26 +02:00
all)
2015-02-26 12:21:20 +01:00
go run build.go -goos darwin -goarch amd64 tar
go run build.go -goos dragonfly -goarch amd64 tar
go run build.go -goos freebsd -goarch 386 tar
go run build.go -goos freebsd -goarch amd64 tar
2014-08-18 22:05:26 +02:00
go run build.go -goos linux -goarch 386 tar
2015-02-26 12:21:20 +01:00
go run build.go -goos linux -goarch amd64 tar
go run build.go -goos linux -goarch arm tar
2015-02-26 12:21:20 +01:00
go run build.go -goos netbsd -goarch 386 tar
go run build.go -goos netbsd -goarch amd64 tar
2014-05-13 01:00:57 +02:00
2014-10-19 13:54:10 +02:00
go run build.go -goos openbsd -goarch 386 tar
2015-02-26 12:21:20 +01:00
go run build.go -goos openbsd -goarch amd64 tar
2014-10-19 13:54:10 +02:00
2015-02-26 12:21:20 +01:00
go run build.go -goos solaris -goarch amd64 tar
2014-08-18 22:05:26 +02:00
go run build.go -goos windows -goarch 386 zip
2015-02-26 12:21:20 +01:00
go run build.go -goos windows -goarch amd64 zip
;;
2014-08-18 22:05:26 +02:00
setup)
echo "Don't worry, just build."
2014-07-31 09:08:08 +02:00
;;
2014-08-18 22:05:26 +02:00
test-cov)
ulimit -t 600 &>/dev/null || true
2014-09-04 00:23:23 +02:00
ulimit -d 512000 &>/dev/null || true
ulimit -m 512000 &>/dev/null || true
go get github.com/axw/gocov/gocov
go get github.com/AlekSi/gocov-xml
2014-08-18 22:05:26 +02:00
echo "mode: set" > coverage.out
fail=0
# For every package in the repo
2014-08-18 22:05:26 +02:00
for dir in $(go list ./...) ; do
# run the tests
2014-08-18 22:05:26 +02:00
godep go test -coverprofile=profile.out $dir
if [ -f profile.out ] ; then
# and if there was test output, append it to coverage.out
2014-08-18 22:05:26 +02:00
grep -v "mode: set" profile.out >> coverage.out
rm profile.out
fi
done
gocov convert coverage.out | gocov-xml > coverage.xml
# This is usually run from within Jenkins. If it is, we need to
# tweak the paths in coverage.xml so cobertura finds the
# source.
if [[ "${WORKSPACE:-default}" != "default" ]] ; then
sed "s#$WORKSPACE##g" < coverage.xml > coverage.xml.new && mv coverage.xml.new coverage.xml
fi
;;
2014-11-23 21:46:18 +01:00
docker-all)
img=${DOCKERIMG:-syncthing/build:latest}
2014-11-19 12:02:47 +01:00
docker run --rm -h syncthing-builder -u $(id -u) -t \
-v $(pwd):/go/src/github.com/syncthing/syncthing \
-w /go/src/github.com/syncthing/syncthing \
2015-01-22 00:59:08 +01:00
-e "STTRACE=$STTRACE" \
"$img" \
2014-12-08 16:10:29 +01:00
sh -c './build.sh clean \
2015-05-23 15:17:19 +02:00
&& ./build.sh test-cov \
&& ./build.sh bench \
&& ./build.sh all'
2014-11-19 12:02:47 +01:00
;;
2014-11-23 22:30:29 +01:00
docker-test)
img=${DOCKERIMG:-syncthing/build:latest}
2014-11-23 22:30:29 +01:00
docker run --rm -h syncthing-builder -u $(id -u) -t \
-v $(pwd):/go/src/github.com/syncthing/syncthing \
-w /go/src/github.com/syncthing/syncthing \
2015-01-22 00:59:08 +01:00
-e "STTRACE=$STTRACE" \
"$img" \
sh -euxc './build.sh clean \
&& go run build.go -race \
2014-11-23 22:30:29 +01:00
&& export GOPATH=$(pwd)/Godeps/_workspace:$GOPATH \
&& cd test \
&& go test -tags integration -v -timeout 90m -short \
&& git clean -fxd .'
2014-11-23 22:30:29 +01:00
;;
2015-04-28 22:32:10 +02:00
docker-lint)
img=${DOCKERIMG:-syncthing/build:latest}
2015-04-28 22:32:10 +02:00
docker run --rm -h syncthing-builder -u $(id -u) -t \
-v $(pwd):/go/src/github.com/syncthing/syncthing \
-w /go/src/github.com/syncthing/syncthing \
-e "STTRACE=$STTRACE" \
"$img" \
2015-04-28 22:32:10 +02:00
sh -euxc 'go run build.go lint'
;;
docker-vet)
img=${DOCKERIMG:-syncthing/build:latest}
2015-04-28 22:32:10 +02:00
docker run --rm -h syncthing-builder -u $(id -u) -t \
-v $(pwd):/go/src/github.com/syncthing/syncthing \
-w /go/src/github.com/syncthing/syncthing \
-e "STTRACE=$STTRACE" \
"$img" \
2015-04-28 22:32:10 +02:00
sh -euxc 'go run build.go vet'
;;
2014-03-02 23:55:08 +01:00
*)
echo "Unknown build command $1"
2014-03-02 23:55:08 +01:00
;;
esac