mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-05 15:39:26 +01:00
e1ec98e248
Fix Docker files which had been forgotten in #594 and update scripts and docs to remove references to gb.
I also removed the `jenkins` directory which is outdated. We can revert f8d7e99
if we realise that it was a mistake to do so.
16 lines
365 B
Bash
Executable file
16 lines
365 B
Bash
Executable file
#! /bin/bash
|
|
|
|
# Builds, tests and lints dendrite, and should be run before pushing commits
|
|
|
|
set -eu
|
|
|
|
# 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.
|
|
echo "Checking that it builds..."
|
|
go build ./cmd/...
|
|
|
|
./scripts/find-lint.sh
|
|
|
|
echo "Testing..."
|
|
go test ./...
|