diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-12-12 16:50:07 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | e3a41c73b9d5ae34637c4d17a273b8a6544c1142 (patch) | |
tree | 808ebbc313fba42ca2818f0ff06ab6a3919cd315 /.travis.yml | |
parent | d0389bce893b8ad5ab9b018e9be06bf6295dd05a (diff) | |
download | dexon-e3a41c73b9d5ae34637c4d17a273b8a6544c1142.tar.gz dexon-e3a41c73b9d5ae34637c4d17a273b8a6544c1142.tar.zst dexon-e3a41c73b9d5ae34637c4d17a273b8a6544c1142.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 d16779c07..53e0109ca 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 |