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
|
|
|
|
2015-01-21 23:59:08 +00:00
|
|
|
STTRACE=${STTRACE:-}
|
2014-11-19 15:02:47 +04:00
|
|
|
|
2015-08-12 23:04:19 +02:00
|
|
|
script() {
|
|
|
|
name="$1"
|
|
|
|
shift
|
|
|
|
go run "script/$name.go" "$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
go run build.go "$@"
|
|
|
|
}
|
|
|
|
|
2014-08-13 22:27:16 +02:00
|
|
|
case "${1:-default}" in
|
|
|
|
default)
|
2015-08-12 23:04:19 +02:00
|
|
|
build
|
2014-03-02 23:55:08 +01:00
|
|
|
;;
|
|
|
|
|
2014-08-11 11:54:48 +02:00
|
|
|
clean)
|
2015-08-12 23:04:19 +02:00
|
|
|
build "$@"
|
2014-08-11 11:59:33 +02:00
|
|
|
;;
|
|
|
|
|
2014-08-18 22:05:26 +02:00
|
|
|
tar)
|
2015-08-12 23:04:19 +02:00
|
|
|
build "$@"
|
2014-03-29 18:53:48 +01:00
|
|
|
;;
|
|
|
|
|
2014-08-18 22:05:26 +02:00
|
|
|
assets)
|
2015-08-12 23:04:19 +02:00
|
|
|
build "$@"
|
2014-03-22 21:33:18 +01:00
|
|
|
;;
|
|
|
|
|
2014-08-18 22:05:26 +02:00
|
|
|
xdr)
|
2015-08-12 23:04:19 +02:00
|
|
|
build "$@"
|
2014-06-08 17:55:34 -05:00
|
|
|
;;
|
|
|
|
|
2014-08-18 22:05:26 +02:00
|
|
|
translate)
|
2015-08-12 23:04:19 +02: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 23:55:08 +01:00
|
|
|
;;
|
|
|
|
|
2015-05-30 10:39:20 +02:00
|
|
|
prerelease)
|
2016-01-30 22:49:14 +01:00
|
|
|
go run script/authors.go
|
2015-08-12 23:04:19 +02:00
|
|
|
build transifex
|
2016-01-13 21:11:46 +01:00
|
|
|
git add -A gui/default/assets/ lib/auto/
|
2015-05-30 13:05:37 +02:00
|
|
|
pushd man ; ./refresh.sh ; popd
|
|
|
|
git add -A man
|
2015-07-20 14:18:07 +02:00
|
|
|
;;
|
|
|
|
|
2014-08-18 22:05:26 +02:00
|
|
|
noupgrade)
|
2015-08-12 23:04:19 +02:00
|
|
|
build -no-upgrade tar
|
2014-03-02 23:55:08 +01:00
|
|
|
;;
|
|
|
|
|
2014-08-18 22:05:26 +02:00
|
|
|
all)
|
2015-12-08 09:33:34 +01:00
|
|
|
platforms=(
|
|
|
|
darwin-amd64 dragonfly-amd64 freebsd-amd64 linux-amd64 netbsd-amd64 openbsd-amd64 solaris-amd64 windows-amd64
|
|
|
|
freebsd-386 linux-386 netbsd-386 openbsd-386 windows-386
|
2016-01-01 20:56:31 +01:00
|
|
|
linux-arm linux-arm64 linux-ppc64 linux-ppc64le
|
2015-12-08 09:33:34 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
for plat in "${platforms[@]}"; do
|
|
|
|
echo Building "$plat"
|
|
|
|
|
|
|
|
goos="${plat%-*}"
|
|
|
|
goarch="${plat#*-}"
|
|
|
|
dist="tar"
|
|
|
|
|
|
|
|
if [[ $goos == "windows" ]]; then
|
|
|
|
dist="zip"
|
|
|
|
fi
|
|
|
|
|
|
|
|
build -goos "$goos" -goarch "$goarch" "$dist"
|
|
|
|
echo
|
|
|
|
done
|
2014-07-31 09:08:08 +02:00
|
|
|
;;
|
|
|
|
|
2014-08-18 22:05:26 +02:00
|
|
|
test-cov)
|
2014-11-23 23:09:09 +01:00
|
|
|
ulimit -t 600 &>/dev/null || true
|
2014-09-03 23:23:23 +01:00
|
|
|
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
|
|
|
echo "mode: set" > coverage.out
|
|
|
|
fail=0
|
|
|
|
|
2014-08-19 12:43:50 +02:00
|
|
|
# For every package in the repo
|
2016-03-05 21:01:58 +01:00
|
|
|
for dir in $(go list ./lib/... ./cmd/...) ; do
|
2014-08-19 12:43:50 +02:00
|
|
|
# run the tests
|
2016-08-08 16:29:32 +00:00
|
|
|
GOPATH="$(pwd)/Godeps/_workspace:$GOPATH" go test -coverprofile=profile.out $dir
|
2014-08-18 22:05:26 +02:00
|
|
|
if [ -f profile.out ] ; then
|
2014-08-19 12:43:50 +02:00
|
|
|
# and if there was test output, append it to coverage.out
|
2015-10-14 15:41:15 +09:00
|
|
|
grep -v "mode: " profile.out >> coverage.out
|
2014-08-18 22:05:26 +02:00
|
|
|
rm profile.out
|
|
|
|
fi
|
|
|
|
done
|
2014-08-19 12:43:50 +02:00
|
|
|
|
2016-08-08 16:29:32 +00:00
|
|
|
notCovered=$(egrep -c '\s0$' coverage.out)
|
|
|
|
total=$(wc -l coverage.out | awk '{print $1}')
|
|
|
|
coverPct=$(awk "BEGIN{print (1 - $notCovered / $total) * 100}")
|
|
|
|
echo "Total coverage is $coverPct%"
|
|
|
|
|
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
|
|
|
;;
|
|
|
|
|
2016-01-10 00:31:55 +01:00
|
|
|
test-xunit)
|
|
|
|
ulimit -t 600 &>/dev/null || true
|
|
|
|
ulimit -d 512000 &>/dev/null || true
|
|
|
|
ulimit -m 512000 &>/dev/null || true
|
|
|
|
|
|
|
|
(GOPATH="$(pwd)/Godeps/_workspace:$GOPATH" go test -v -race ./lib/... ./cmd/... || true) > tests.out
|
|
|
|
go2xunit -output tests.xml -fail < tests.out
|
|
|
|
;;
|
|
|
|
|
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
|