diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-07-07 10:56:57 +0200 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-07-08 09:29:53 +0200 |
commit | 3f586005840e012a98e0f300a726b1cbda75e001 (patch) | |
tree | 63d460f5f2aa130e5d804bd74d33363260f2e414 /autotests/run-tests.sh | |
parent | 955e1314ebfd83d6f44d88547159e6492035681e (diff) | |
download | libquotient-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-x | autotests/run-tests.sh | 6 |
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... |