summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--other/travis/env-windows.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/other/travis/env-windows.sh b/other/travis/env-windows.sh
index 7ae6ea25..410948c1 100644
--- a/other/travis/env-windows.sh
+++ b/other/travis/env-windows.sh
@@ -4,7 +4,7 @@ CMAKE=$ARCH-w64-mingw32.shared-cmake
4CMAKE_EXTRA_FLAGS="$CMAKE_EXTRA_FLAGS -DBOOTSTRAP_DAEMON=OFF -DCOMPILE_AS_CXX=ON" 4CMAKE_EXTRA_FLAGS="$CMAKE_EXTRA_FLAGS -DBOOTSTRAP_DAEMON=OFF -DCOMPILE_AS_CXX=ON"
5NPROC=`nproc` 5NPROC=`nproc`
6CURDIR=/work 6CURDIR=/work
7RUN_TESTS=false 7RUN_TESTS=true
8 8
9RUN() { 9RUN() {
10 ./dockcross "$@" 10 ./dockcross "$@"
@@ -21,6 +21,7 @@ TESTS() {
21 # Run tests in docker. 21 # Run tests in docker.
22 ./dockcross "$@" || { 22 ./dockcross "$@" || {
23 cat _build/Testing/Temporary/LastTest.log 23 cat _build/Testing/Temporary/LastTest.log
24 false 24 # Ignore test failures on Windows builds for now.
25 #false
25 } 26 }
26} 27}