mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
debbea5b29
Pip can install multiple dependencies at the same time, so there is no need to use xargs -n1. It's significantly slower with -n1, so let's not do it with no reason.
21 lines
342 B
Bash
Executable File
21 lines
342 B
Bash
Executable File
#! /bin/bash
|
|
|
|
cd "`dirname $0`/.."
|
|
|
|
TOX_DIR=$WORKSPACE/.tox
|
|
|
|
mkdir -p $TOX_DIR
|
|
|
|
if ! [ $TOX_DIR -ef .tox ]; then
|
|
ln -s "$TOX_DIR" .tox
|
|
fi
|
|
|
|
# set up the virtualenv
|
|
tox -e py27 --notest -v
|
|
|
|
TOX_BIN=$TOX_DIR/py27/bin
|
|
$TOX_BIN/pip install setuptools
|
|
{ python synapse/python_dependencies.py
|
|
echo lxml psycopg2
|
|
} | xargs $TOX_BIN/pip install
|