From bec03de2baf69d8dda67fab3f1d26e4e7c6c6378 Mon Sep 17 00:00:00 2001 From: iphydf Date: Fri, 6 Jan 2017 13:18:36 +0000 Subject: [PATCH] Run windows tests but ignore their failures. This way we can at least see what fails in which way. --- other/travis/env-windows.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/other/travis/env-windows.sh b/other/travis/env-windows.sh index 7ae6ea2522..410948c126 100644 --- a/other/travis/env-windows.sh +++ b/other/travis/env-windows.sh @@ -4,7 +4,7 @@ CMAKE=$ARCH-w64-mingw32.shared-cmake CMAKE_EXTRA_FLAGS="$CMAKE_EXTRA_FLAGS -DBOOTSTRAP_DAEMON=OFF -DCOMPILE_AS_CXX=ON" NPROC=`nproc` CURDIR=/work -RUN_TESTS=false +RUN_TESTS=true RUN() { ./dockcross "$@" @@ -21,6 +21,7 @@ TESTS() { # Run tests in docker. ./dockcross "$@" || { cat _build/Testing/Temporary/LastTest.log - false + # Ignore test failures on Windows builds for now. + #false } }