aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 022462f698..875671325c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -103,7 +103,12 @@ script:
else
$(exit $BUILD_RC);
fi
- - if [ "$BUILD_RC" -eq 0 ] ; then travis_retry ${TEST_CMD} ; else $(exit $BUILD_RC); fi
+ - |
+ if [ "$BUILD_RC" -eq 0 ] ; then
+ ${TEST_CMD} ;
+ else
+ $(exit $BUILD_RC);
+ fi
after_script:
- if command -v ccache ; then ccache --show-stats ; fi