You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by sn...@apache.org on 2019/04/03 04:03:15 UTC

[incubator-pinot] branch master updated: Add wait_time flag for Travis config (#4057)

This is an automated email from the ASF dual-hosted git repository.

snlee pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git


The following commit(s) were added to refs/heads/master by this push:
     new 35f5e15  Add wait_time flag for Travis config (#4057)
35f5e15 is described below

commit 35f5e155d44a405ba28f74ba7cc4d08d31da2681
Author: Seunghyun Lee <sn...@linkedin.com>
AuthorDate: Tue Apr 2 21:03:10 2019 -0700

    Add wait_time flag for Travis config (#4057)
    
    When the test takes more than 10 minutes without producing any output,
    Travis job will fail. This pr makes Travis to emit a short log for
    every minute for 30 minutes (Our current travis job runtime is 30~35min)
    
    https://docs.travis-ci.com/user/common-build-problems/#build-times-out-because-no-output-was-received
---
 .travis.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 65ddf08..f0b8bfe 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,10 +21,10 @@ addons:
   firefox: latest
 
 install:
-  - ./.travis_install.sh
+  - travis_wait 30 ./.travis_install.sh
 
 script:
-  - ./.travis_test.sh
+  - travis_wait 30 ./.travis_test.sh
 
 branches:
   only:


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org