From: Peter Amstutz Date: Fri, 28 Aug 2015 14:40:06 +0000 (-0400) Subject: Preinstall forked version of libcloud, because nodemanager "pip install" won't X-Git-Url: https://git.arvados.org/arvados-dev.git/commitdiff_plain/8003783f717ecb167a47c11d01f459b43670fd0e Preinstall forked version of libcloud, because nodemanager "pip install" won't pick it up by default. refs #6507 --- diff --git a/jenkins/run-tests.sh b/jenkins/run-tests.sh index cdff551..e2ae4c5 100755 --- a/jenkins/run-tests.sh +++ b/jenkins/run-tests.sh @@ -412,6 +412,12 @@ pip freeze 2>/dev/null | egrep ^PyYAML= \ || pip install PyYAML >/dev/null \ || fatal "pip install PyYAML failed" +# Preinstall forked version of libcloud, because nodemanager "pip install" +# won't pick it up by default. +pip freeze 2>/dev/null | egrep ^apache-libcloud==0.18.1.dev1 \ + || pip install --pre --ignore-installed https://github.com/curoverse/libcloud/archive/apache-libcloud-0.18.1.dev1.zip >/dev/null \ + || fatal "pip install apache-libcloud failed" + # If Python 3 is available, set up its virtualenv in $VENV3DIR. # Otherwise, skip dependent tests. PYTHON3=$(which python3)