jenkins-postgres.sh 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #!/bin/bash
  2. set -eux
  3. : ${WORKSPACE:="$(pwd)"}
  4. export PYTHONDONTWRITEBYTECODE=yep
  5. export SYNAPSE_CACHE_FACTOR=1
  6. # Output test results as junit xml
  7. export TRIAL_FLAGS="--reporter=subunit"
  8. export TOXSUFFIX="| subunit-1to2 | subunit2junitxml --no-passthrough --output-to=results.xml"
  9. # Write coverage reports to a separate file for each process
  10. export COVERAGE_OPTS="-p"
  11. export DUMP_COVERAGE_COMMAND="coverage help"
  12. # Output flake8 violations to violations.flake8.log
  13. # Don't exit with non-0 status code on Jenkins,
  14. # so that the build steps continue and a later step can decided whether to
  15. # UNSTABLE or FAILURE this build.
  16. export PEP8SUFFIX="--output-file=violations.flake8.log || echo flake8 finished with status code \$?"
  17. rm .coverage* || echo "No coverage files to remove"
  18. tox --notest -e py27
  19. TOX_BIN=$WORKSPACE/.tox/py27/bin
  20. python synapse/python_dependencies.py | xargs -n1 $TOX_BIN/pip install
  21. $TOX_BIN/pip install psycopg2
  22. $TOX_BIN/pip install lxml
  23. : ${GIT_BRANCH:="origin/$(git rev-parse --abbrev-ref HEAD)"}
  24. if [[ ! -e .sytest-base ]]; then
  25. git clone https://github.com/matrix-org/sytest.git .sytest-base --mirror
  26. else
  27. (cd .sytest-base; git fetch -p)
  28. fi
  29. rm -rf sytest
  30. git clone .sytest-base sytest --shared
  31. cd sytest
  32. git checkout "${GIT_BRANCH}" || (echo >&2 "No ref ${GIT_BRANCH} found, falling back to develop" ; git checkout develop)
  33. : ${PORT_BASE:=8000}
  34. ./jenkins/prep_sytest_for_postgres.sh
  35. echo >&2 "Running sytest with PostgreSQL";
  36. ./jenkins/install_and_run.sh --coverage \
  37. --python $TOX_BIN/python \
  38. --synapse-directory $WORKSPACE \
  39. --port-base $PORT_BASE
  40. cd ..
  41. cp sytest/.coverage.* .
  42. # Combine the coverage reports
  43. echo "Combining:" .coverage.*
  44. $TOX_BIN/python -m coverage combine
  45. # Output coverage to coverage.xml
  46. $TOX_BIN/coverage xml -o coverage.xml