jenkins-sqlite.sh 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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 lxml
  22. : ${GIT_BRANCH:="origin/$(git rev-parse --abbrev-ref HEAD)"}
  23. if [[ ! -e .sytest-base ]]; then
  24. git clone https://github.com/matrix-org/sytest.git .sytest-base --mirror
  25. else
  26. (cd .sytest-base; git fetch -p)
  27. fi
  28. rm -rf sytest
  29. git clone .sytest-base sytest --shared
  30. cd sytest
  31. git checkout "${GIT_BRANCH}" || (echo >&2 "No ref ${GIT_BRANCH} found, falling back to develop" ; git checkout develop)
  32. : ${PORT_BASE:=8500}
  33. ./jenkins/install_and_run.sh --coverage \
  34. --python $TOX_BIN/python \
  35. --synapse-directory $WORKSPACE \
  36. --port-base $PORT_BASE
  37. cd ..
  38. cp sytest/.coverage.* .
  39. # Combine the coverage reports
  40. echo "Combining:" .coverage.*
  41. $TOX_BIN/python -m coverage combine
  42. # Output coverage to coverage.xml
  43. $TOX_BIN/coverage xml -o coverage.xml