mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-20 16:42:05 +01: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
|