mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-09 22:42:58 +00:00
14 lines
301 B
Bash
Executable File
14 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
|