mirror of
https://github.com/hoernschen/dendrite.git
synced 2025-04-05 19:43:40 +00:00
kill kafka after integ tests
This commit is contained in:
parent
625ca0ad5f
commit
c088f7bd04
1 changed files with 10 additions and 0 deletions
|
@ -39,6 +39,11 @@ function travis_end {
|
|||
echo -en "travis_fold:end:$name\r"
|
||||
}
|
||||
|
||||
function kill_kafka {
|
||||
./kafka/bin/kafka-server-stop.sh || true
|
||||
./kafka/bin/zookeeper-server-stop.sh || true
|
||||
}
|
||||
|
||||
if [ "${TEST_SUITE:-lint}" == "lint" ]; then
|
||||
./scripts/find-lint.sh
|
||||
fi
|
||||
|
@ -77,6 +82,11 @@ if [ "${TEST_SUITE:-integ-test}" == "integ-test" ]; then
|
|||
./scripts/install-local-kafka.sh
|
||||
travis_end
|
||||
|
||||
# make sure we kill off zookeeper/kafka on exit, because it stops the
|
||||
# travis container being cleaned up (cf
|
||||
# https://github.com/travis-ci/travis-ci/issues/8082)
|
||||
trap kill_kafka EXIT
|
||||
|
||||
# Run the integration tests
|
||||
for i in roomserver syncserver mediaapi; do
|
||||
travis_start "$i-integration-tests" "Running integration tests for $i"
|
||||
|
|
Loading…
Reference in a new issue