diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-12-12 16:50:07 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2018-12-19 20:54:27 +0800 |
commit | e901518852e17febb9bec5c25ae727d8ddd9f0ed (patch) | |
tree | a09806c1738c9776d1828405ad50685fd8dc4531 | |
parent | 1f3ccade14c54be94fd3b67851807c27c20d7ef7 (diff) | |
download | dexon-e901518852e17febb9bec5c25ae727d8ddd9f0ed.tar.gz dexon-e901518852e17febb9bec5c25ae727d8ddd9f0ed.tar.zst dexon-e901518852e17febb9bec5c25ae727d8ddd9f0ed.zip |
ci: auto retry test (#89)
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 0cdcb077a..9e4e92e14 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 |