2017-02-03 13:52:32 +00:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
2017-09-08 15:56:52 +01:00
|
|
|
# Tune the GC to use more memory to reduce the number of garbage collections
|
|
|
|
export GOGC=400
|
2017-09-05 17:40:46 +01:00
|
|
|
export GOPATH="$(pwd):$(pwd)/vendor"
|
|
|
|
export PATH="$PATH:$(pwd)/vendor/bin:$(pwd)/bin"
|
|
|
|
|
|
|
|
echo "Installing lint search engine..."
|
|
|
|
go install github.com/alecthomas/gometalinter/
|
|
|
|
gometalinter --config=linter.json ./... --install
|
|
|
|
|
|
|
|
echo "Looking for lint..."
|
2017-09-08 15:56:52 +01:00
|
|
|
gometalinter --config=linter.json ./... --enable-gc
|
2017-09-05 17:40:46 +01:00
|
|
|
|
|
|
|
echo "Double checking spelling..."
|
2017-06-12 18:30:47 +01:00
|
|
|
misspell -error src *.md
|
|
|
|
|
2017-09-05 17:40:46 +01:00
|
|
|
echo "Testing..."
|
2017-02-03 13:52:32 +00:00
|
|
|
gb test
|
2017-05-23 09:12:59 +01:00
|
|
|
|
|
|
|
# Check that all the packages can build.
|
|
|
|
# When `go build` is given multiple packages it won't output anything, and just
|
|
|
|
# checks that everything builds. This seems to do a better job of handling
|
|
|
|
# missing imports than `gb build` does.
|
2017-09-05 17:40:46 +01:00
|
|
|
echo "Double checking it builds..."
|
|
|
|
go build github.com/matrix-org/dendrite/cmd/...
|
|
|
|
|
|
|
|
echo "Done!"
|