aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2019-07-16 15:53:02 +0100
committerAlex Bennée <alex.bennee@linaro.org>2019-07-23 15:53:25 +0100
commit3a37c13f8cc9dc87aab5de66b6293bb052ff4faf (patch)
treeac392ba950daa2f7c12a962f892565da1ef51a41 /.travis.yml
parent6d314626cc20e47108eb3d3e6e926dd802b23441 (diff)
downloadqemu-3a37c13f8cc9dc87aab5de66b6293bb052ff4faf.zip
qemu-3a37c13f8cc9dc87aab5de66b6293bb052ff4faf.tar.gz
qemu-3a37c13f8cc9dc87aab5de66b6293bb052ff4faf.tar.bz2
travis: enable travis_retry for check phase
We have some flaky tests and usually the test passes on a retry. Enable travis_retry for the test phase and see if that helps keep things green. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
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 5d3d6ee..caf0a1f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -75,7 +75,7 @@ before_script:
- mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
- ${SRC_DIR}/configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
script:
- - make -j3 && ${TEST_CMD}
+ - make -j3 && travis_retry ${TEST_CMD}
matrix: