aboutsummaryrefslogtreecommitdiff
path: root/build/ci/travis_ci.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build/ci/travis_ci.sh')
-rwxr-xr-xbuild/ci/travis_ci.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/ci/travis_ci.sh b/build/ci/travis_ci.sh
index e51a67931b9f..8ed0543dfdf9 100755
--- a/build/ci/travis_ci.sh
+++ b/build/ci/travis_ci.sh
@@ -15,13 +15,14 @@ case "$UNAME" in
cmake -G "Visual Studio 15 2017" -D CMAKE_BUILD_TYPE="Release" "${SRCDIR}"
cmake --build . --target ALL_BUILD
# Until fixed, we don't run tests on Windows (lots of fails + timeout)
+ #export SKIP_TEST_FUZZ=1
#cmake --build . --target RUN_TESTS
set +x
elif [ "${BS}" = "mingw" ]; then
set -x
cmake -G "MSYS Makefiles" -D CMAKE_C_COMPILER="${CC}" -D CMAKE_MAKE_PROGRAM="mingw32-make" -D CMAKE_BUILD_TYPE="Release" "${SRCDIR}"
mingw32-make
- # The MinGW tests time out on Travis CI, disable for now
+ #export SKIP_TEST_FUZZ=1
#mingw32-make test
set +x
else