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
|
|
|
|
2015-08-12 21:04:19 +00:00
|
|
|
script() {
|
|
|
|
name="$1"
|
|
|
|
shift
|
|
|
|
go run "script/$name.go" "$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
go run build.go "$@"
|
|
|
|
}
|
|
|
|
|
2014-08-13 20:27:16 +00:00
|
|
|
case "${1:-default}" in
|
|
|
|
default)
|
2015-08-12 21:04:19 +00:00
|
|
|
build
|
2014-03-02 22:55:08 +00:00
|
|
|
;;
|
|
|
|
|
2014-08-11 09:54:48 +00:00
|
|
|
clean)
|
2015-08-12 21:04:19 +00:00
|
|
|
build "$@"
|
2014-08-11 09:59:33 +00:00
|
|
|
;;
|
|
|
|
|
2014-08-18 20:05:26 +00:00
|
|
|
tar)
|
2015-08-12 21:04:19 +00:00
|
|
|
build "$@"
|
2014-03-29 17:53:48 +00:00
|
|
|
;;
|
|
|
|
|
2014-08-18 20:05:26 +00:00
|
|
|
deps)
|
2015-08-12 21:04:19 +00:00
|
|
|
build "$@"
|
2014-05-12 23:04:49 +00:00
|
|
|
;;
|
|
|
|
|
2014-08-18 20:05:26 +00:00
|
|
|
assets)
|
2015-08-12 21:04:19 +00:00
|
|
|
build "$@"
|
2014-03-22 20:33:18 +00:00
|
|
|
;;
|
|
|
|
|
2014-08-18 20:05:26 +00:00
|
|
|
xdr)
|
2015-08-12 21:04:19 +00:00
|
|
|
build "$@"
|
2014-06-08 22:55:34 +00:00
|
|
|
;;
|
|
|
|
|
2014-08-18 20:05:26 +00:00
|
|
|
translate)
|
2015-08-12 21:04:19 +00:00
|
|
|
build "$@"
|
|
|
|
;;
|
|
|
|
|
|
|
|
deb)
|
|
|
|
build "$@"
|
|
|
|
;;
|
|
|
|
|
|
|
|
setup)
|
|
|
|
build "$@"
|
|
|
|
;;
|
|
|
|
|
|
|
|
test)
|
|
|
|
ulimit -t 600 &>/dev/null || true
|
|
|
|
ulimit -d 512000 &>/dev/null || true
|
|
|
|
ulimit -m 512000 &>/dev/null || true
|
|
|
|
LOGGER_DISCARD=1 build test
|
|
|
|
;;
|
|
|
|
|
|
|
|
bench)
|
|
|
|
LOGGER_DISCARD=1 build bench | script benchfilter
|
2014-03-02 22:55:08 +00:00
|
|
|
;;
|
|
|
|
|
2015-05-30 08:39:20 +00:00
|
|
|
prerelease)
|
2015-08-12 21:04:19 +00:00
|
|
|
build transifex
|
2015-08-06 09:29:25 +00:00
|
|
|
git add -A gui/assets/ lib/auto/
|
2015-05-30 11:05:37 +00:00
|
|
|
pushd man ; ./refresh.sh ; popd
|
|
|
|
git add -A man
|
2015-07-20 12:18:07 +00:00
|
|
|
;;
|
|
|
|
|
2014-08-18 20:05:26 +00:00
|
|
|
noupgrade)
|
2015-08-12 21:04:19 +00:00
|
|
|
build -no-upgrade tar
|
2014-03-02 22:55:08 +00:00
|
|
|
;;
|
|
|
|
|
2014-08-18 20:05:26 +00:00
|
|
|
all)
|
2015-08-30 18:50:07 +00:00
|
|
|
build -goos darwin -goarch amd64 tar
|
2015-02-26 11:21:20 +00:00
|
|
|
|
2015-08-30 18:50:07 +00:00
|
|
|
build -goos dragonfly -goarch amd64 tar
|
2015-02-26 11:21:20 +00:00
|
|
|
|
2015-08-30 18:50:07 +00:00
|
|
|
build -goos freebsd -goarch 386 tar
|
|
|
|
build -goos freebsd -goarch amd64 tar
|
2014-04-08 13:16:07 +00:00
|
|
|
|
2015-08-30 18:50:07 +00:00
|
|
|
build -goos linux -goarch 386 tar
|
|
|
|
build -goos linux -goarch amd64 tar
|
|
|
|
build -goos linux -goarch arm tar
|
2014-05-12 23:00:57 +00:00
|
|
|
|
2015-08-30 18:50:07 +00:00
|
|
|
build -goos netbsd -goarch 386 tar
|
|
|
|
build -goos netbsd -goarch amd64 tar
|
2014-10-19 11:54:10 +00:00
|
|
|
|
2015-08-30 18:50:07 +00:00
|
|
|
build -goos openbsd -goarch 386 tar
|
|
|
|
build -goos openbsd -goarch amd64 tar
|
2014-08-18 20:05:26 +00:00
|
|
|
|
2015-08-30 18:50:07 +00:00
|
|
|
build -goos solaris -goarch amd64 tar
|
2015-08-21 11:13:12 +00:00
|
|
|
|
2015-08-30 18:50:07 +00:00
|
|
|
build -goos windows -goarch 386 zip
|
|
|
|
build -goos windows -goarch amd64 zip
|
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-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
|
2015-10-28 08:22:07 +00:00
|
|
|
GOPATH="$(pwd)/Godeps/_workspace:$GOPATH" go test -race -coverprofile=profile.out $dir
|
2014-08-18 20:05:26 +00:00
|
|
|
if [ -f profile.out ] ; then
|
2014-08-19 10:43:50 +00:00
|
|
|
# and if there was test output, append it to coverage.out
|
2015-10-14 06:41:15 +00:00
|
|
|
grep -v "mode: " profile.out >> coverage.out
|
2014-08-18 20:05:26 +00:00
|
|
|
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)
|
2015-08-09 12:40:18 +00:00
|
|
|
img=${DOCKERIMG:-syncthing/build:latest}
|
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-08-09 12:40:18 +00:00
|
|
|
"$img" \
|
2014-12-08 15:10:29 +00:00
|
|
|
sh -c './build.sh clean \
|
2015-05-23 13:17:19 +00:00
|
|
|
&& ./build.sh test-cov \
|
|
|
|
&& ./build.sh bench \
|
|
|
|
&& ./build.sh all'
|
2014-11-19 11:02:47 +00:00
|
|
|
;;
|
|
|
|
|
2014-11-23 21:30:29 +00:00
|
|
|
docker-test)
|
2015-08-09 12:40:18 +00:00
|
|
|
img=${DOCKERIMG:-syncthing/build:latest}
|
2014-11-23 21:30:29 +00:00
|
|
|
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-08-09 12:40:18 +00:00
|
|
|
"$img" \
|
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)
|
2015-08-09 12:40:18 +00:00
|
|
|
img=${DOCKERIMG:-syncthing/build:latest}
|
2015-04-28 20:32:10 +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 \
|
|
|
|
-e "STTRACE=$STTRACE" \
|
2015-08-09 12:40:18 +00:00
|
|
|
"$img" \
|
2015-04-28 20:32:10 +00:00
|
|
|
sh -euxc 'go run build.go lint'
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
|
|
docker-vet)
|
2015-08-09 12:40:18 +00:00
|
|
|
img=${DOCKERIMG:-syncthing/build:latest}
|
2015-04-28 20:32:10 +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 \
|
|
|
|
-e "STTRACE=$STTRACE" \
|
2015-08-09 12:40:18 +00:00
|
|
|
"$img" \
|
2015-04-28 20:32:10 +00:00
|
|
|
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
|