You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@griffin.apache.org by gu...@apache.org on 2018/10/01 15:07:12 UTC

incubator-griffin git commit: Increase build silence timeout

Repository: incubator-griffin
Updated Branches:
  refs/heads/master 5d7ef04c6 -> 2ce6115e0


Increase build silence timeout

According to experiment, resolving dependencies takes longer
than default build timeout of 20 minutes. Increasing to 30.

[Experiment](https://travis-ci.org/apache/incubator-griffin/builds/435326777) shown that sometimes it takes more than 20 minutes to download all the dependencies and start executing tests. In that particular experiment it took 22 minutes in order to get to test execution.

Author: Nikolay Sokolov <ch...@gmail.com>

Closes #428 from chemikadze/increase-build-timeout.


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/2ce6115e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/2ce6115e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/2ce6115e

Branch: refs/heads/master
Commit: 2ce6115e00fae0b5486ddf9eecb91f37bc51cdd1
Parents: 5d7ef04
Author: Nikolay Sokolov <ch...@gmail.com>
Authored: Mon Oct 1 23:07:06 2018 +0800
Committer: William Guo <gu...@apache.org>
Committed: Mon Oct 1 23:07:06 2018 +0800

----------------------------------------------------------------------
 .travis.yml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/2ce6115e/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 713b27e..c344291 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -24,4 +24,8 @@ node_js:
 install:
   - npm install -g bower
 
-script: travis_wait mvn clean verify -q
+script: travis_wait 30 mvn clean verify -q
+
+cache:
+  directories:
+  - $HOME/.m2