diff options
author | Erik Johnston <erik@matrix.org> | 2016-08-04 15:29:45 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-08-04 15:29:45 +0100 |
commit | b3682df2ca0673d703e05fdbfc43b79a61517948 (patch) | |
tree | 79275cc75a3b5b56ce44f3750821f66ab5f89db0 /jenkins/prepare_synapse.sh | |
parent | Don't infer paragrahs from newlines (diff) | |
parent | Merge pull request #979 from matrix-org/erikj/state_ids_api (diff) | |
download | synapse-b3682df2ca0673d703e05fdbfc43b79a61517948.tar.xz |
Merge branch 'develop' of github.com:matrix-org/synapse into erikj/xpath_fix
Diffstat (limited to 'jenkins/prepare_synapse.sh')
-rwxr-xr-x | jenkins/prepare_synapse.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/jenkins/prepare_synapse.sh b/jenkins/prepare_synapse.sh new file mode 100755 index 0000000000..237223c81b --- /dev/null +++ b/jenkins/prepare_synapse.sh @@ -0,0 +1,19 @@ +#! /bin/bash + +cd "`dirname $0`/.." + +TOX_DIR=$WORKSPACE/.tox + +mkdir -p $TOX_DIR + +if ! [ $TOX_DIR -ef .tox ]; then + ln -s "$TOX_DIR" .tox +fi + +# set up the virtualenv +tox -e py27 --notest -v + +TOX_BIN=$TOX_DIR/py27/bin +python synapse/python_dependencies.py | xargs -n1 $TOX_BIN/pip install +$TOX_BIN/pip install lxml +$TOX_BIN/pip install psycopg2 |