2016-09-14 09:16:06 -05:00
|
|
|
#!/bin/bash
|
|
|
|
function exit_if_fail {
|
|
|
|
command=$@
|
|
|
|
echo "Executing '$command'"
|
|
|
|
eval $command
|
|
|
|
rc=$?
|
|
|
|
if [ $rc -ne 0 ]; then
|
|
|
|
echo "'$command' returned $rc."
|
|
|
|
exit $rc
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2017-02-06 08:55:22 -06:00
|
|
|
echo "running go fmt"
|
2018-10-05 07:42:25 -05:00
|
|
|
exit_if_fail test -z \"'$(gofmt -s -l ./pkg | tee /dev/stderr)'\"
|
2017-02-06 08:55:22 -06:00
|
|
|
|
2017-10-23 02:06:08 -05:00
|
|
|
echo "building backend with install to cache pkgs"
|
|
|
|
exit_if_fail time go install ./pkg/cmd/grafana-server
|
2016-09-15 06:52:38 -05:00
|
|
|
|
2017-02-24 02:22:57 -06:00
|
|
|
echo "running go test"
|
2018-04-17 02:00:55 -05:00
|
|
|
set -e
|
|
|
|
time for d in $(go list ./pkg/...); do
|
2018-12-12 06:47:21 -06:00
|
|
|
exit_if_fail go test -tags=integration -covermode=atomic $d
|
2018-04-17 02:00:55 -05:00
|
|
|
done
|