aboutsummaryrefslogtreecommitdiff
path: root/build/scripts/complement-cmd.sh
blob: 061bd18eb7868a8359301a76120ce4a9e0ee780b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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=integrationcover.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