mirror of
https://github.com/hoernschen/dendrite.git
synced 2024-12-26 15:08:28 +00:00
13 lines
301 B
Bash
Executable file
13 lines
301 B
Bash
Executable file
#! /bin/bash
|
|
|
|
set -eu
|
|
|
|
# Check that the servers build
|
|
gb build github.com/matrix-org/dendrite/cmd/dendrite-room-server
|
|
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
|