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

[2/8] thrift git commit: follow-up: THRIFT-3690 Work around docker image build failures on Travis-CI

follow-up: THRIFT-3690 Work around docker image build failures on Travis-CI

When hanged, travis_wait travis_retry ... fails after 20 mins.
travis_retry travis_wait ... might let us actually retry.


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

Branch: refs/heads/master
Commit: 50bb860acd3ea200be5261335c5ccb1300bacfae
Parents: 56c1c64
Author: Nobuaki Sukegawa <ns...@apache.org>
Authored: Mon Feb 22 22:13:31 2016 +0900
Committer: Nobuaki Sukegawa <ns...@apache.org>
Committed: Wed Mar 2 23:44:22 2016 +0900

----------------------------------------------------------------------
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/50bb860a/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 17fc71f..9946d5d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -28,7 +28,7 @@ services:
 install:
   - travis_wait docker pull thrift/$DISTRO:latest || true
   - cp -r ./build/docker/scripts/*.sh ./build/docker/$DISTRO/scripts/
-  - travis_wait travis_retry docker build -q -t thrift-build build/docker/$DISTRO
+  - travis_retry travis_wait docker build -q -t thrift-build build/docker/$DISTRO
 
 script:
   - docker run $BUILD_ENV -v $(pwd):/thrift/src -it thrift-build $BUILD_CMD $BUILD_ARG