From 443e5d36431991942a798742e4c452126bc0a0c7 Mon Sep 17 00:00:00 2001 From: Connor Tumbleson Date: Sat, 16 Feb 2019 14:00:25 -0500 Subject: [PATCH] build: fix timeout in windows due to travis - refs: https://travis-ci.community/t/windows-build-hangs-after-done-exit-0/1439 --- scripts/travis-ci/run-tests.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/travis-ci/run-tests.sh b/scripts/travis-ci/run-tests.sh index 1cee0e70..5f3616d8 100755 --- a/scripts/travis-ci/run-tests.sh +++ b/scripts/travis-ci/run-tests.sh @@ -1,6 +1,7 @@ #!/usr/bin/env sh if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then + export GRADLE_OPTS=-Dorg.gradle.daemon=false export PATH=$PATH:"/c/Program Files/Java/jdk1.8.0_201/bin" ./gradlew.bat build shadowJar proguard else