2021-03-25 12:53:54 -04:00
|
|
|
#!/usr/bin/env bash
|
2022-01-21 17:23:26 -05:00
|
|
|
# this script is run by GitHub Actions in a plain `focal` container; it installs the
|
2021-04-08 11:41:35 -04:00
|
|
|
# minimal requirements for tox and hands over to the py3-old tox environment.
|
2020-02-09 19:41:20 -05:00
|
|
|
|
2022-01-21 17:23:26 -05:00
|
|
|
# Prevent tzdata from asking for user input
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
|
|
|
2020-02-09 19:41:20 -05:00
|
|
|
set -ex
|
|
|
|
|
|
|
|
apt-get update
|
2022-01-21 17:23:26 -05:00
|
|
|
apt-get install -y python3 python3-dev python3-pip libxml2-dev libxslt-dev xmlsec1 zlib1g-dev tox libjpeg-dev libwebp-dev
|
2020-02-09 19:41:20 -05:00
|
|
|
|
|
|
|
export LANG="C.UTF-8"
|
|
|
|
|
2021-01-25 14:22:35 -05:00
|
|
|
# Prevent virtualenv from auto-updating pip to an incompatible version
|
|
|
|
export VIRTUALENV_NO_DOWNLOAD=1
|
|
|
|
|
2022-02-02 10:59:33 -05:00
|
|
|
exec tox -e py3-old
|