2014-03-17 11:15:59 -06:00
|
|
|
#!/usr/bin/env bash
|
2014-08-13 22:27:16 +02:00
|
|
|
set -euo pipefail
|
|
|
|
IFS=$'\n\t'
|
2013-12-22 00:16:49 +01:00
|
|
|
|
2014-08-13 22:27:16 +02: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-03 23:23:23 +01:00
|
|
|
ulimit -t 60 &>/dev/null || true
|
|
|
|
ulimit -d 512000 &>/dev/null || true
|
|
|
|
ulimit -m 512000 &>/dev/null || true
|
2014-08-30 10:02:10 +02:00
|
|
|
|
2014-08-18 22:05:26 +02:00
|
|
|
go run build.go "$1"
|
2014-08-11 11:59:33 +02:00
|
|
|
;;
|
|
|
|
|
2014-08-18 22:05:26 +02:00
|
|
|
tar)
|
|
|
|
go run build.go "$1"
|
2014-03-29 18:53:48 +01:00
|
|
|
;;
|
|
|
|
|
2014-08-18 22:05:26 +02:00
|
|
|
deps)
|
|
|
|
go run build.go "$1"
|
2014-05-12 20:04:49 -03: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-06-08 17:55:34 -05:00
|
|
|
;;
|
|
|
|
|
2014-08-18 22:05:26 +02:00
|
|
|
translate)
|
|
|
|
go run build.go "$1"
|
2014-03-02 23:55:08 +01:00
|
|
|
;;
|
|
|
|
|
2014-08-18 22:05:26 +02:00
|
|
|
transifex)
|
|
|
|
go run build.go "$1"
|
2014-08-11 11:59:33 +02:00
|
|
|
;;
|
2014-05-06 08:13:56 -03:00
|
|
|
|
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)
|
|
|
|
go run build.go -goos linux -goarch amd64 tar
|
|
|
|
go run build.go -goos linux -goarch 386 tar
|
|
|
|
go run build.go -goos linux -goarch armv5 tar
|
|
|
|
go run build.go -goos linux -goarch armv6 tar
|
|
|
|
go run build.go -goos linux -goarch armv7 tar
|
2014-04-08 15:16:07 +02:00
|
|
|
|
2014-08-18 22:05:26 +02:00
|
|
|
go run build.go -goos freebsd -goarch amd64 tar
|
|
|
|
go run build.go -goos freebsd -goarch 386 tar
|
2014-05-12 20:00:57 -03:00
|
|
|
|
2014-10-19 13:54:10 +02:00
|
|
|
go run build.go -goos openbsd -goarch amd64 tar
|
|
|
|
go run build.go -goos openbsd -goarch 386 tar
|
|
|
|
|
2014-08-18 22:05:26 +02:00
|
|
|
go run build.go -goos darwin -goarch amd64 tar
|
|
|
|
|
|
|
|
go run build.go -goos windows -goarch amd64 zip
|
|
|
|
go run build.go -goos windows -goarch 386 zip
|
2014-07-06 19:21:37 +02:00
|
|
|
;;
|
|
|
|
|
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)
|
2014-09-03 23:23:23 +01:00
|
|
|
ulimit -t 60 &>/dev/null || true
|
|
|
|
ulimit -d 512000 &>/dev/null || true
|
|
|
|
ulimit -m 512000 &>/dev/null || true
|
2014-08-30 10:02:10 +02:00
|
|
|
|
2014-08-19 12:43:50 +02:00
|
|
|
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
|
|
|
|
|
2014-08-19 12:43:50 +02:00
|
|
|
# For every package in the repo
|
2014-08-18 22:05:26 +02:00
|
|
|
for dir in $(go list ./...) ; do
|
2014-08-19 12:43:50 +02:00
|
|
|
# run the tests
|
2014-08-18 22:05:26 +02:00
|
|
|
godep go test -coverprofile=profile.out $dir
|
|
|
|
if [ -f profile.out ] ; then
|
2014-08-19 12:43:50 +02:00
|
|
|
# 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
|
2014-08-19 12:43:50 +02: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 15:14:02 +02:00
|
|
|
;;
|
|
|
|
|
2014-03-02 23:55:08 +01:00
|
|
|
*)
|
2014-08-13 22:27:16 +02:00
|
|
|
echo "Unknown build command $1"
|
2014-03-02 23:55:08 +01:00
|
|
|
;;
|
|
|
|
esac
|