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
|
|
|
|
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)
|
|
|
|
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 13:16:07 +00:00
|
|
|
|
2014-08-18 20:05:26 +00:00
|
|
|
go run build.go -goos freebsd -goarch amd64 tar
|
|
|
|
go run build.go -goos freebsd -goarch 386 tar
|
2014-05-12 23:00:57 +00:00
|
|
|
|
2014-08-18 20:05:26 +00: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 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-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-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-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
|