summaryrefslogtreecommitdiff
path: root/scripts/docker/files/start-trial-test.sh
blob: 15638b65ef233276c85d2c8aa46c8fc0ba9f24f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

# Run Soledad trial tests.
#
# This script is meant to be copied to the docker container and run upon
# container start.

CMD="/usr/local/soledad/test-env.py"
REPO="/var/local/soledad"

if [ ! -z "${SOLEDAD_REMOTE}" ]; then
  git -C ${REPO} remote add test ${SOLEDAD_REMOTE}
  git -C ${REPO} fetch test
fi

if [ ! -z "${SOLEDAD_BRANCH}" ]; then
  git -C ${REPO} checkout ${SOLEDAD_BRANCH}
fi

# currently soledad trial tests need a running couch on environment
${CMD} couch start

trial leap.soledad.common