build_virtualenv 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. #!/bin/bash
  2. #
  3. # runs dh_virtualenv to build the virtualenv in the build directory,
  4. # and then runs the trial tests against the installed synapse.
  5. set -e
  6. export DH_VIRTUALENV_INSTALL_ROOT=/opt/venvs
  7. # make sure that the virtualenv links to the specific version of python, by
  8. # dereferencing the python3 symlink.
  9. #
  10. # Otherwise, if somebody tries to install (say) the stretch package on buster,
  11. # they will get a confusing error about "No module named 'synapse'", because
  12. # python won't look in the right directory. At least this way, the error will
  13. # be a *bit* more obvious.
  14. #
  15. SNAKE=`readlink -e /usr/bin/python3`
  16. # try to set the CFLAGS so any compiled C extensions are compiled with the most
  17. # generic as possible x64 instructions, so that compiling it on a new Intel chip
  18. # doesn't enable features not available on older ones or AMD.
  19. #
  20. # TODO: add similar things for non-amd64, or figure out a more generic way to
  21. # do this.
  22. case `dpkg-architecture -q DEB_HOST_ARCH` in
  23. amd64)
  24. export CFLAGS=-march=x86-64
  25. ;;
  26. esac
  27. # Use --builtin-venv to use the better `venv` module from CPython 3.4+ rather
  28. # than the 2/3 compatible `virtualenv`.
  29. dh_virtualenv \
  30. --install-suffix "matrix-synapse" \
  31. --builtin-venv \
  32. --python "$SNAKE" \
  33. --upgrade-pip \
  34. --preinstall="lxml" \
  35. --preinstall="mock" \
  36. --extra-pip-arg="--no-cache-dir" \
  37. --extra-pip-arg="--compile" \
  38. --extras="all,systemd"
  39. PACKAGE_BUILD_DIR="debian/matrix-synapse-py3"
  40. VIRTUALENV_DIR="${PACKAGE_BUILD_DIR}${DH_VIRTUALENV_INSTALL_ROOT}/matrix-synapse"
  41. TARGET_PYTHON="${VIRTUALENV_DIR}/bin/python"
  42. # we copy the tests to a temporary directory so that we can put them on the
  43. # PYTHONPATH without putting the uninstalled synapse on the pythonpath.
  44. tmpdir=`mktemp -d`
  45. trap "rm -r $tmpdir" EXIT
  46. cp -r tests "$tmpdir"
  47. PYTHONPATH="$tmpdir" \
  48. "${TARGET_PYTHON}" -B -m twisted.trial --reporter=text -j2 tests
  49. # build the config file
  50. "${TARGET_PYTHON}" -B "${VIRTUALENV_DIR}/bin/generate_config" \
  51. --config-dir="/etc/matrix-synapse" \
  52. --data-dir="/var/lib/matrix-synapse" |
  53. perl -pe '
  54. # tweak the paths to the tls certs and signing keys
  55. /^tls_.*_path:/ and s/SERVERNAME/homeserver/;
  56. /^signing_key_path:/ and s/SERVERNAME/homeserver/;
  57. # tweak the pid file location
  58. /^pid_file:/ and s#:.*#: "/var/run/matrix-synapse.pid"#;
  59. # tweak the path to the log config
  60. /^log_config:/ and s/SERVERNAME\.log\.config/log.yaml/;
  61. # tweak the path to the media store
  62. /^media_store_path:/ and s#/media_store#/media#;
  63. # remove the server_name setting, which is set in a separate file
  64. /^server_name:/ and $_ = "#\n# This is set in /etc/matrix-synapse/conf.d/server_name.yaml for Debian installations.\n# $_";
  65. # remove the report_stats setting, which is set in a separate file
  66. /^# report_stats:/ and $_ = "";
  67. ' > "${PACKAGE_BUILD_DIR}/etc/matrix-synapse/homeserver.yaml"
  68. # build the log config file
  69. "${TARGET_PYTHON}" -B "${VIRTUALENV_DIR}/bin/generate_log_config" \
  70. --output-file="${PACKAGE_BUILD_DIR}/etc/matrix-synapse/log.yaml"
  71. # add a dependency on the right version of python to substvars.
  72. PYPKG=`basename $SNAKE`
  73. echo "synapse:pydepends=$PYPKG" >> debian/matrix-synapse-py3.substvars