2017-03-01 15:55:27 +01:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
2017-05-05 18:59:45 +02:00
|
|
|
# Check that the servers build (this is done explicitly because `gb build` can silently fail (exit 0) and then we'd test a stale binary)
|
2017-04-20 18:47:33 +02:00
|
|
|
gb build github.com/matrix-org/dendrite/cmd/dendrite-room-server
|
2017-03-21 18:14:17 +01:00
|
|
|
gb build github.com/matrix-org/dendrite/cmd/roomserver-integration-tests
|
2017-05-05 18:59:45 +02:00
|
|
|
gb build github.com/matrix-org/dendrite/cmd/dendrite-sync-api-server
|
|
|
|
gb build github.com/matrix-org/dendrite/cmd/syncserver-integration-tests
|
2017-05-25 18:41:45 +02:00
|
|
|
gb build github.com/matrix-org/dendrite/cmd/create-account
|
2017-03-01 15:55:27 +01:00
|
|
|
|
|
|
|
# Run the pre commit hooks
|
|
|
|
./hooks/pre-commit
|
|
|
|
|
|
|
|
# Run the integration tests
|
|
|
|
bin/roomserver-integration-tests
|
2017-05-05 18:59:45 +02:00
|
|
|
bin/syncserver-integration-tests
|