2014-03-17 10:15:59 -07:00
|
|
|
#!/usr/bin/env bash
|
2014-08-13 13:27:16 -07:00
|
|
|
set -euo pipefail
|
|
|
|
IFS=$'\n\t'
|
2013-12-21 16:16:49 -07:00
|
|
|
|
2015-01-21 16:59:08 -07:00
|
|
|
STTRACE=${STTRACE:-}
|
2014-11-19 04:02:47 -07:00
|
|
|
|
2014-08-13 13:27:16 -07:00
|
|
|
case "${1:-default}" in
|
|
|
|
default)
|
2014-08-18 13:05:26 -07:00
|
|
|
go run build.go
|
2014-03-02 15:55:08 -07:00
|
|
|
;;
|
|
|
|
|
2014-08-11 02:54:48 -07:00
|
|
|
clean)
|
2014-08-18 13:05:26 -07:00
|
|
|
go run build.go "$1"
|
2014-08-11 02:54:48 -07:00
|
|
|
;;
|
|
|
|
|
2014-08-18 13:05:26 -07:00
|
|
|
test)
|
2014-09-03 15:23:23 -07:00
|
|
|
ulimit -t 60 &>/dev/null || true
|
|
|
|
ulimit -d 512000 &>/dev/null || true
|
|
|
|
ulimit -m 512000 &>/dev/null || true
|
2014-08-30 01:02:10 -07:00
|
|
|
|
2014-08-18 13:05:26 -07:00
|
|
|
go run build.go "$1"
|
2014-08-11 02:59:33 -07:00
|
|
|
;;
|
|
|
|
|
2014-08-18 13:05:26 -07:00
|
|
|
tar)
|
|
|
|
go run build.go "$1"
|
2014-03-29 10:53:48 -07:00
|
|
|
;;
|
|
|
|
|
2014-08-18 13:05:26 -07:00
|
|
|
deps)
|
|
|
|
go run build.go "$1"
|
2014-05-12 16:04:49 -07:00
|
|
|
;;
|
|
|
|
|
2014-08-18 13:05:26 -07:00
|
|
|
assets)
|
|
|
|
go run build.go "$1"
|
2014-03-22 13:33:18 -07:00
|
|
|
;;
|
|
|
|
|
2014-08-18 13:05:26 -07:00
|
|
|
xdr)
|
|
|
|
go run build.go "$1"
|
2014-06-08 15:55:34 -07:00
|
|
|
;;
|
|
|
|
|
2014-08-18 13:05:26 -07:00
|
|
|
translate)
|
|
|
|
go run build.go "$1"
|
2014-03-02 15:55:08 -07:00
|
|
|
;;
|
|
|
|
|
2014-08-18 13:05:26 -07:00
|
|
|
transifex)
|
|
|
|
go run build.go "$1"
|
2014-08-11 02:59:33 -07:00
|
|
|
;;
|
2014-05-06 04:13:56 -07:00
|
|
|
|
2014-08-18 13:05:26 -07:00
|
|
|
noupgrade)
|
|
|
|
go run build.go -no-upgrade tar
|
2014-03-02 15:55:08 -07:00
|
|
|
;;
|
|
|
|
|
2014-08-18 13:05:26 -07:00
|
|
|
all)
|
2015-02-26 04:21:20 -07:00
|
|
|
go run build.go -goos darwin -goarch amd64 tar
|
2015-03-15 08:23:45 -07:00
|
|
|
go run build.go -goos darwin -goarch 386 tar
|
2015-02-26 04:21:20 -07:00
|
|
|
|
|
|
|
go run build.go -goos dragonfly -goarch 386 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 13:05:26 -07:00
|
|
|
go run build.go -goos linux -goarch 386 tar
|
2015-02-26 04:21:20 -07:00
|
|
|
go run build.go -goos linux -goarch amd64 tar
|
2015-01-09 02:21:30 -07:00
|
|
|
go run build.go -goos linux -goarch arm tar
|
2014-04-08 06:16:07 -07:00
|
|
|
|
2015-02-26 04:21:20 -07:00
|
|
|
go run build.go -goos netbsd -goarch 386 tar
|
|
|
|
go run build.go -goos netbsd -goarch amd64 tar
|
2014-05-12 16:00:57 -07:00
|
|
|
|
2014-10-19 04:54:10 -07:00
|
|
|
go run build.go -goos openbsd -goarch 386 tar
|
2015-02-26 04:21:20 -07:00
|
|
|
go run build.go -goos openbsd -goarch amd64 tar
|
2014-10-19 04:54:10 -07:00
|
|
|
|
2015-02-26 04:21:20 -07:00
|
|
|
go run build.go -goos solaris -goarch amd64 tar
|
2014-08-18 13:05:26 -07:00
|
|
|
|
|
|
|
go run build.go -goos windows -goarch 386 zip
|
2015-02-26 04:21:20 -07:00
|
|
|
go run build.go -goos windows -goarch amd64 zip
|
2014-07-06 10:21:37 -07:00
|
|
|
;;
|
|
|
|
|
2014-08-18 13:05:26 -07:00
|
|
|
setup)
|
|
|
|
echo "Don't worry, just build."
|
2014-07-31 00:08:08 -07:00
|
|
|
;;
|
|
|
|
|
2014-08-18 13:05:26 -07:00
|
|
|
test-cov)
|
2014-11-23 15:09:09 -07:00
|
|
|
ulimit -t 600 &>/dev/null || true
|
2014-09-03 15:23:23 -07:00
|
|
|
ulimit -d 512000 &>/dev/null || true
|
|
|
|
ulimit -m 512000 &>/dev/null || true
|
2014-08-30 01:02:10 -07:00
|
|
|
|
2014-08-19 03:43:50 -07:00
|
|
|
go get github.com/axw/gocov/gocov
|
|
|
|
go get github.com/AlekSi/gocov-xml
|
|
|
|
|
2014-08-18 13:05:26 -07:00
|
|
|
echo "mode: set" > coverage.out
|
|
|
|
fail=0
|
|
|
|
|
2014-08-19 03:43:50 -07:00
|
|
|
# For every package in the repo
|
2014-08-18 13:05:26 -07:00
|
|
|
for dir in $(go list ./...) ; do
|
2014-08-19 03:43:50 -07:00
|
|
|
# run the tests
|
2014-08-18 13:05:26 -07:00
|
|
|
godep go test -coverprofile=profile.out $dir
|
|
|
|
if [ -f profile.out ] ; then
|
2014-08-19 03:43:50 -07:00
|
|
|
# and if there was test output, append it to coverage.out
|
2014-08-18 13:05:26 -07:00
|
|
|
grep -v "mode: set" profile.out >> coverage.out
|
|
|
|
rm profile.out
|
|
|
|
fi
|
|
|
|
done
|
2014-08-19 03:43:50 -07:00
|
|
|
|
|
|
|
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-07-28 06:14:02 -07:00
|
|
|
;;
|
|
|
|
|
2014-11-23 13:46:18 -07:00
|
|
|
docker-all)
|
2014-11-19 04:02:47 -07: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-21 16:59:08 -07:00
|
|
|
-e "STTRACE=$STTRACE" \
|
2015-02-11 02:17:15 -07:00
|
|
|
syncthing/build:latest \
|
2014-12-08 08:10:29 -07:00
|
|
|
sh -c './build.sh clean \
|
2015-03-25 15:15:52 -07:00
|
|
|
&& go tool vet -composites=false cmd/*/*.go internal/*/*.go \
|
2014-12-08 08:10:29 -07:00
|
|
|
&& ( golint ./cmd/... ; golint ./internal/... ) | egrep -v "comment on exported|should have comment" \
|
|
|
|
&& ./build.sh all \
|
|
|
|
&& STTRACE=all ./build.sh test-cov'
|
2014-11-19 04:02:47 -07:00
|
|
|
;;
|
|
|
|
|
2014-11-23 14:30:29 -07:00
|
|
|
docker-test)
|
|
|
|
docker run --rm -h syncthing-builder -u $(id -u) -t \
|
2014-12-17 04:31:03 -07:00
|
|
|
-v $(pwd):/go/src/github.com/syncthing/syncthing \
|
|
|
|
-w /go/src/github.com/syncthing/syncthing \
|
2015-01-21 16:59:08 -07:00
|
|
|
-e "STTRACE=$STTRACE" \
|
2015-02-11 02:17:15 -07:00
|
|
|
syncthing/build:latest \
|
2014-12-17 04:31:03 -07:00
|
|
|
sh -euxc './build.sh clean \
|
2014-11-29 14:17:54 -07:00
|
|
|
&& go run build.go -race \
|
2014-11-23 14:30:29 -07:00
|
|
|
&& export GOPATH=$(pwd)/Godeps/_workspace:$GOPATH \
|
|
|
|
&& cd test \
|
2015-03-29 23:26:31 -07:00
|
|
|
&& go test -tags integration -v -timeout 90m -short \
|
2014-12-17 04:31:03 -07:00
|
|
|
&& git clean -fxd .'
|
2014-11-23 14:30:29 -07:00
|
|
|
;;
|
|
|
|
|
2014-03-02 15:55:08 -07:00
|
|
|
*)
|
2014-08-13 13:27:16 -07:00
|
|
|
echo "Unknown build command $1"
|
2014-03-02 15:55:08 -07:00
|
|
|
;;
|
|
|
|
esac
|