jenkins-postgres.sh 397 B

123456789101112131415161718
  1. #!/bin/bash
  2. set -eux
  3. : ${WORKSPACE:="$(pwd)"}
  4. export WORKSPACE
  5. export PYTHONDONTWRITEBYTECODE=yep
  6. export SYNAPSE_CACHE_FACTOR=1
  7. ./jenkins/prepare_synapse.sh
  8. ./jenkins/clone.sh sytest https://github.com/matrix-org/sytest.git
  9. ./sytest/jenkins/prep_sytest_for_postgres.sh
  10. ./sytest/jenkins/install_and_run.sh \
  11. --python $WORKSPACE/.tox/py27/bin/python \
  12. --synapse-directory $WORKSPACE \