2014-12-09 16:37:28 +01:00
|
|
|
#!/bin/bash
|
|
|
|
git clone --depth=1 git://github.com/powerline/bot-ci tests/bot-ci
|
|
|
|
git clone --depth=1 git://github.com/powerline/deps tests/bot-ci/deps
|
|
|
|
|
|
|
|
. tests/bot-ci/scripts/common/main.sh
|
|
|
|
|
|
|
|
if test -n "$USE_UCS2_PYTHON" ; then
|
|
|
|
for variant in $UCS2_PYTHON_VARIANTS ; do
|
|
|
|
archive="${PWD:-$(pwd)}/tests/bot-ci/deps/cpython-ucs2/cpython-ucs2-${variant}.tar.gz"
|
|
|
|
sudo sh -c "cd /opt && tar xzvf $archive"
|
|
|
|
done
|
2013-03-03 17:40:35 +01:00
|
|
|
fi
|
2014-12-09 16:37:28 +01:00
|
|
|
|
|
|
|
pip install .
|
|
|
|
|
|
|
|
pip install --no-deps tests/bot-ci/deps/wheels/$PYTHON_SUFFIX/*.whl
|
|
|
|
|
2014-08-23 01:28:51 +02:00
|
|
|
sudo apt-get install -qq screen zsh tcsh mksh busybox socat
|
2014-01-23 15:33:33 +01:00
|
|
|
# Travis has too outdated fish. It cannot be used for tests.
|
|
|
|
# sudo apt-get install fish
|
2013-05-02 10:59:50 +02:00
|
|
|
true
|