GitHub user toyboxman opened a pull request:
https://github.com/apache/incubator-griffin/pull/429
Fix timeout failure in travis CI.
Build times out because no output was received.
'travis_wait mvn clean verify -q' will spawn a process to deal with mvn task
-q,--quiet Quiet output - only show errors
-q probably leads no output caught by travis, so timeout failure happens
refer to:
https://docs.travis-ci.com/user/common-build-problems/#limitations-of-travis_wait
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/toyboxman/incubator-griffin build/tarvis
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/incubator-griffin/pull/429.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #429
----
commit c21b9412aaba318a9a23b675d1dd0d43bf5747cb
Author: Eugene <liujin@...>
Date: 2018-10-01T12:18:01Z
Fix timeout failure in travis CI.
Build times out because no output was received.
'travis_wait mvn clean verify -q' will spawn a process to deal with mvn task
-q,--quiet Quiet output - only show errors
-q probably leads no output caught by travis, so timeout failure happens
refer to:
https://docs.travis-ci.com/user/common-build-problems/#limitations-of-travis_wait
----
---