diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-12-12 16:50:07 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 21:32:54 +0800 |
commit | 705607110d1c8277cd9fc61e86d7657fb7e09754 (patch) | |
tree | 5ac36cd1aacdeb75a4020068cbd09d09bb55ea3a /.travis.yml | |
parent | 1a891ee16641496b99da324e902c082b3acd03bf (diff) | |
download | go-tangerine-705607110d1c8277cd9fc61e86d7657fb7e09754.tar go-tangerine-705607110d1c8277cd9fc61e86d7657fb7e09754.tar.gz go-tangerine-705607110d1c8277cd9fc61e86d7657fb7e09754.tar.bz2 go-tangerine-705607110d1c8277cd9fc61e86d7657fb7e09754.tar.lz go-tangerine-705607110d1c8277cd9fc61e86d7657fb7e09754.tar.xz go-tangerine-705607110d1c8277cd9fc61e86d7657fb7e09754.tar.zst go-tangerine-705607110d1c8277cd9fc61e86d7657fb7e09754.zip |
ci: auto retry test (#89)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 056b0a423..d5a420445 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ matrix: - sudo chown root:$USER /etc/fuse.conf - make libbls - go run build/ci.go install - - go run build/ci.go test -coverage $TEST_PACKAGES + - travis_retry go run build/ci.go test -coverage $TEST_PACKAGES # These are the latest Go versions. - os: linux @@ -26,7 +26,7 @@ matrix: - sudo chown root:$USER /etc/fuse.conf - make libbls - go run build/ci.go install - - go run build/ci.go test -coverage $TEST_PACKAGES + - travis_retry go run build/ci.go test -coverage $TEST_PACKAGES - os: osx go: 1.11.x @@ -42,7 +42,7 @@ matrix: - unset -f cd # workaround for https://github.com/travis-ci/travis-ci/issues/8703 - make libbls - go run build/ci.go install - - go run build/ci.go test -coverage $TEST_PACKAGES + - travis_retry go run build/ci.go test -coverage $TEST_PACKAGES # This builder only tests code linters on latest version of Go - os: linux |