You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2015/06/21 15:13:59 UTC

[03/24] git commit: updated refs/heads/master to 6fd49e4

It seems the network failures last for a bit.. allow some sleeping time Add some verbosity for status checking

Signed-off-by: Daan Hoogland <da...@onecht.net>


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/b55ef551
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/b55ef551
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/b55ef551

Branch: refs/heads/master
Commit: b55ef551ca593d086277c8f849854e1fee7880a5
Parents: f0dcd40
Author: Rafael da Fonseca <rs...@gmail.com>
Authored: Thu Jun 18 23:08:54 2015 +0200
Committer: Daan Hoogland <da...@onecht.net>
Committed: Sun Jun 21 15:13:24 2015 +0200

----------------------------------------------------------------------
 tools/travis/before_install.sh | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/b55ef551/tools/travis/before_install.sh
----------------------------------------------------------------------
diff --git a/tools/travis/before_install.sh b/tools/travis/before_install.sh
index b4a4bc4..eee53f8 100755
--- a/tools/travis/before_install.sh
+++ b/tools/travis/before_install.sh
@@ -94,8 +94,11 @@ for ((i=0;i<$RETRY_COUNT;i++))
 do
  mvn org.apache.maven.plugins:maven-dependency-plugin:resolve-plugins > /dev/null
  if [[ $? -eq 0 ]]; then
+   echo -e "\nPlugin dependencies downloaded successfully"
    break;
  fi
+ echo -e "\nRetrying in 10 seconds..."
+ sleep 10
 done
 
 #Resolve remaining deps
@@ -108,7 +111,10 @@ for ((i=0;i<$RETRY_COUNT;i++))
 do
  mvn org.apache.maven.plugins:maven-dependency-plugin:resolve > /dev/null
  if [[ $? -eq 0 ]]; then
+   echo -e "\nProject dependencies downloaded successfully"
    break;
  fi
+ echo -e "\nRetrying in 10 seconds..."
+ sleep 10
 done
 cd ../..