mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-10 06:53:00 +00:00
baf118b08c
This adds Sytest and Complement coverage reporting to the nightly scheduled CI runs. Fixes a few API mode related issues as well, since we seemingly never really ran them with Complement. Also fixes a bug related to device list changes: When we pass in an empty `newlyLeftRooms` slice, we got a list of all currently joined rooms with the corresponding members. When we then got the `newlyJoinedRooms`, we wouldn't update the `changed` slice, because we already got the user from the `newlyLeftRooms` query. This is fixed by simply ignoring empty `newlyLeftRooms`.
23 lines
627 B
Bash
Executable File
23 lines
627 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
# This script is intended to be used inside a docker container for Complement
|
|
|
|
if [[ "${COVER}" -eq 1 ]]; then
|
|
echo "Running with coverage"
|
|
exec /dendrite/dendrite-monolith-server-cover \
|
|
--really-enable-open-registration \
|
|
--tls-cert server.crt \
|
|
--tls-key server.key \
|
|
--config dendrite.yaml \
|
|
-api=${API:-0} \
|
|
--test.coverprofile=complementcover.log
|
|
else
|
|
echo "Not running with coverage"
|
|
exec /dendrite/dendrite-monolith-server \
|
|
--really-enable-open-registration \
|
|
--tls-cert server.crt \
|
|
--tls-key server.key \
|
|
--config dendrite.yaml \
|
|
-api=${API:-0}
|
|
fi
|