From 727f64e6f3b3313814117bbc5cc1ae32b126f18d Mon Sep 17 00:00:00 2001 From: Frederik Seiffert Date: Thu, 11 Jun 2020 14:24:24 +0200 Subject: [PATCH] Output config.log if build fails on CI. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c017afe01..457c90c95 100644 --- a/.travis.yml +++ b/.travis.yml @@ -126,7 +126,7 @@ before_script: | script: # configure and make need to be executed via MinGW shell on Windows ($mingw is undefined on Linux) - $mingw ./configure $BASE_ABI $CONFIGURE_OPTS || (cat config.log && false) - - $mingw make && $mingw make install && $mingw make check || (cat Tests/tests.log && false) + - ($mingw make || (cat config.log && false)) && $mingw make install && $mingw make check || (cat Tests/tests.log && false) # set up packages cache (currently used on Windows only) before_cache: |