aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorMatt Corallo <git@bluematt.me>2014-09-29 22:51:47 -0700
committerMatt Corallo <git@bluematt.me>2014-09-30 12:14:22 -0700
commite166c177bccdaf5b3c1b2238e8e04d53554d138e (patch)
treed60ae082b3613c53ad90dac0d9ca0bcbc71d02e1 /.travis.yml
parent6d7a0fa4e5a691764dc532d64af40b2dd3dc9e8b (diff)
downloadbitcoin-e166c177bccdaf5b3c1b2238e8e04d53554d138e.tar.xz
Revert "travis: retry tests before giving up"
This reverts commit 7e3821c097c05a4790abac53ddd26ef28cb7cf4d.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 155ac012d8..f7d94df646 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -58,6 +58,6 @@ script:
- cd bitcoin-$HOST
- ./configure --cache-file=../config.cache $BITCOIN_CONFIG_ALL $BITCOIN_CONFIG || ( cat config.log && false)
- make $MAKEJOBS $GOAL || ( echo "Build failure. Verbose build follows." && make $GOAL V=1 ; false )
- - if [ "$RUN_TESTS" = "true" ]; then travis_retry make check; fi
+ - if [ "$RUN_TESTS" = "true" ]; then make check; fi
after_script:
- if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then (echo "Upload goes here. Something like: scp -r $BASE_OUTDIR server" || echo "upload failed"); fi