summary refs log tree commit diff
path: root/.buildkite/scripts/setup_old_deps.sh
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2021-01-22 10:31:34 +0000
committerErik Johnston <erik@matrix.org>2021-01-22 10:48:56 +0000
commitaa2fe082aeadbfb29f2e5180d1074dcd24ce88d7 (patch)
tree13728ce75f8b12f18f2f96c053ff91cd4e4d0de6 /.buildkite/scripts/setup_old_deps.sh
parentReturn a 404 if no valid thumbnail is found. (#9163) (diff)
downloadsynapse-github/erikj/test_old_dep_postgres.tar.xz
Diffstat (limited to '.buildkite/scripts/setup_old_deps.sh')
-rwxr-xr-x.buildkite/scripts/setup_old_deps.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/.buildkite/scripts/setup_old_deps.sh b/.buildkite/scripts/setup_old_deps.sh
new file mode 100755

index 0000000000..0f0836587b --- /dev/null +++ b/.buildkite/scripts/setup_old_deps.sh
@@ -0,0 +1,11 @@ +#!/bin/bash + +# this script is run by buildkite in a plain `xenial` container; it installs the +# minimal requirements for tox and hands over to the py35-old tox environment. + +set -ex + +apt-get update +apt-get install -y python3.5 python3.5-dev python3-pip libxml2-dev libxslt-dev xmlsec1 zlib1g-dev tox + +export LANG="C.UTF-8"