mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-09 22:42:58 +00:00
d6a03039dc
This distinguishes them from tools like 'kafka-producer' which are not required to run a dendrite server. The prefix also groups together the dendrite binaries nicely on `ls` as well as making it nicer to tab-complete.
14 lines
300 B
Bash
Executable File
14 lines
300 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -eu
|
|
|
|
# Check that the servers build
|
|
gb build github.com/matrix-org/dendrite/cmd/dendrite-roomserver
|
|
gb build github.com/matrix-org/dendrite/cmd/roomserver-integration-tests
|
|
|
|
# Run the pre commit hooks
|
|
./hooks/pre-commit
|
|
|
|
# Run the integration tests
|
|
bin/roomserver-integration-tests
|