aboutsummaryrefslogtreecommitdiff
path: root/autotests/run-tests.sh
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-07-07 10:56:57 +0200
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-07-08 09:29:53 +0200
commit3f586005840e012a98e0f300a726b1cbda75e001 (patch)
tree63d460f5f2aa130e5d804bd74d33363260f2e414 /autotests/run-tests.sh
parent955e1314ebfd83d6f44d88547159e6492035681e (diff)
downloadlibquotient-3f586005840e012a98e0f300a726b1cbda75e001.tar.gz
libquotient-3f586005840e012a98e0f300a726b1cbda75e001.zip
Adjust Synapse image for tests
:latest stopped working for some reason.
Diffstat (limited to 'autotests/run-tests.sh')
-rwxr-xr-xautotests/run-tests.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/autotests/run-tests.sh b/autotests/run-tests.sh
index 05a215af..e7a228ef 100755
--- a/autotests/run-tests.sh
+++ b/autotests/run-tests.sh
@@ -1,16 +1,18 @@
mkdir -p data
chmod 0777 data
+SYNAPSE_IMAGE='matrixdotorg/synapse:v1.61.1'
+
rm ~/.local/share/testolmaccount -rf
docker run -v `pwd`/data:/data --rm \
- -e SYNAPSE_SERVER_NAME=localhost -e SYNAPSE_REPORT_STATS=no matrixdotorg/synapse:latest generate
+ -e SYNAPSE_SERVER_NAME=localhost -e SYNAPSE_REPORT_STATS=no $SYNAPSE_IMAGE generate
(cd data && . ../autotests/adjust-config.sh)
docker run -d \
--name synapse \
-p 1234:8008 \
-p 8448:8008 \
-p 8008:8008 \
- -v `pwd`/data:/data matrixdotorg/synapse:latest
+ -v `pwd`/data:/data $SYNAPSE_IMAGE
trap "rm -rf ./data/*; docker rm -f synapse 2>&1 >/dev/null; trap - EXIT" EXIT
echo Waiting for synapse to start...