From 829e0829dd5417484f0ec979b6564ce74991eec5 Mon Sep 17 00:00:00 2001 From: Eric Haszlakiewicz Date: Wed, 8 Apr 2020 02:17:14 +0000 Subject: [PATCH] Wait a while before exiting travis to allow output to flush. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 269e993..bae9bfe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -124,6 +124,8 @@ before_install: fi before_script: + # Wait a while for output to flush :( + - onexit() { sleep 20; }; trap onexit 0 - mkdir -p build || (echo "Failed to mkdir build" ; false) - cd build || (echo "Failed to cd build" ; false) - cmake .. || (echo "Failed to run cmake"; false) -- 2.40.0