mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-10 06:53:00 +00:00
37e0b6c4c6
* Add integration tests for roomserver to travis * Try setting the dist trusty to see if that helps with postgres * Pretty print the test input JSON * Add comment as to why we are using trusty
14 lines
305 B
Bash
Executable File
14 lines
305 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -eu
|
|
|
|
# Check that the servers build
|
|
gb build github.com/matrix-org/dendrite/roomserver/roomserver
|
|
gb build github.com/matrix-org/dendrite/roomserver/roomserver-integration-tests
|
|
|
|
# Run the pre commit hooks
|
|
./hooks/pre-commit
|
|
|
|
# Run the integration tests
|
|
bin/roomserver-integration-tests
|