This is an automated email from the ASF dual-hosted git repository.
dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-composer.git
The following commit(s) were added to refs/heads/master by this push:
new 8b6310f Prefetch docker images (#11)
8b6310f is described below
commit 8b6310f5c21c9bb5f6980fd1912a35a045315590
Author: Olivier Tardieu <tardieu@users.noreply.github.com>
AuthorDate: Tue Nov 27 11:39:41 2018 -0500
Prefetch docker images (#11)
---
travis/setup.sh | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/travis/setup.sh b/travis/setup.sh
index 17ebb48..e7bdd1b 100755
--- a/travis/setup.sh
+++ b/travis/setup.sh
@@ -25,6 +25,11 @@ SCRIPTDIR=$(cd $(dirname "$0") && pwd)
ROOTDIR="$SCRIPTDIR/.."
WHISKDIR="$ROOTDIR/openwhisk"
+# Prefetch docker images
+docker pull openwhisk/controller &
+docker pull openwhisk/invoker &
+docker pull openwhisk/nodejs6action &
+
# Clone OpenWhisk
cd $ROOTDIR
git clone --depth=1 https://github.com/apache/incubator-openwhisk.git openwhisk
|