2017-10-10 12:02:39 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
# Builds, tests and lints dendrite, and should be run before pushing commits
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
echo "Checking that it builds"
|
|
|
|
gb build
|
|
|
|
|
|
|
|
# Check that all the packages can build.
|
|
|
|
# When `go build` is given multiple packages it won't output anything, and just
|
2019-05-21 22:56:55 +02:00
|
|
|
# checks that everything builds.
|
2017-10-10 12:02:39 +02:00
|
|
|
echo "Double checking it builds..."
|
2019-05-21 22:56:55 +02:00
|
|
|
go build ./cmd/...
|
2017-10-10 12:02:39 +02:00
|
|
|
|
|
|
|
./scripts/find-lint.sh
|
|
|
|
|
|
|
|
echo "Testing..."
|
2019-05-21 22:56:55 +02:00
|
|
|
go test ./...
|