mirror of
https://github.com/matrix-org/dendrite.git
synced 2026-01-16 18:43:10 -06:00
Merge latest updates to Dendrite Of note, this no longer builds the Dendrite polylith server, which we never planned to use anyway I want to make sure I didn't break the clientapi/routing/routing.go redaction events, our code differs from Dendrite in that call path. --------- Signed-off-by: Brian Meek <brian@hntlabs.com> Co-authored-by: Tak Wai Wong <64229756+tak-hntlabs@users.noreply.github.com>
21 lines
553 B
Bash
Executable file
21 lines
553 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-cover \
|
|
--really-enable-open-registration \
|
|
--tls-cert server.crt \
|
|
--tls-key server.key \
|
|
--config dendrite.yaml \
|
|
--test.coverprofile=complementcover.log
|
|
else
|
|
echo "Not running with coverage"
|
|
exec /dendrite/dendrite \
|
|
--really-enable-open-registration \
|
|
--tls-cert server.crt \
|
|
--tls-key server.key \
|
|
--config dendrite.yaml
|
|
fi
|