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