Preinstall forked version of libcloud, because nodemanager "pip install" won't
authorPeter Amstutz <peter.amstutz@curoverse.com>
Fri, 28 Aug 2015 14:40:06 +0000 (10:40 -0400)
committerPeter Amstutz <peter.amstutz@curoverse.com>
Fri, 28 Aug 2015 14:42:04 +0000 (10:42 -0400)
pick it up by default.  refs #6507

jenkins/run-tests.sh

index cdff5510fdaec353fcd62f5de6059c5270a77e01..e2ae4c55613cd69eece373350e6278a83f63f3a3 100755 (executable)
@@ -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)