diff --git a/ci/acceptance_tests.sh b/ci/acceptance_tests.sh index 613e5fe3c..26a59f720 100755 --- a/ci/acceptance_tests.sh +++ b/ci/acceptance_tests.sh @@ -5,7 +5,7 @@ set -e # uses at least 1g of memory, If we don't do this we can get OOM issues when # installing gems. See https://github.com/elastic/logstash/issues/5179 export JRUBY_OPTS="-J-Xmx1g" -export GRADLE_OPTS="-Xmx2g -Dorg.gradle.daemon=false" +export GRADLE_OPTS="-Xmx2g -Dorg.gradle.daemon=false -Dorg.gradle.logging.level=info" SELECTED_TEST_SUITE=$1 diff --git a/ci/integration_tests.sh b/ci/integration_tests.sh index 21e62293a..7f1bc8d26 100755 --- a/ci/integration_tests.sh +++ b/ci/integration_tests.sh @@ -5,7 +5,7 @@ # uses at least 1g of memory, If we don't do this we can get OOM issues when # installing gems. See https://github.com/elastic/logstash/issues/5179 export JRUBY_OPTS="-J-Xmx1g" -export GRADLE_OPTS="-Xmx2g -Dorg.gradle.daemon=false" +export GRADLE_OPTS="-Xmx2g -Dorg.gradle.daemon=false -Dorg.gradle.logging.level=info" export SPEC_OPTS="--order rand --format documentation" export CI=true @@ -41,5 +41,4 @@ elif [[ ! -z $@ ]]; then else echo "Running all integration tests" ./gradlew runIntegrationTests --console=plain -ADLE_OPTS -nnn +fi diff --git a/ci/unit_tests.bat b/ci/unit_tests.bat index 1188f96a0..cfa972d4d 100644 --- a/ci/unit_tests.bat +++ b/ci/unit_tests.bat @@ -40,7 +40,7 @@ echo Using drive !use_drive! for %WORKSPACE% !use_drive! echo Running core tests.. -call .\gradlew.bat test --console=plain --no-daemon +call .\gradlew.bat test --console=plain --no-daemon --info if errorlevel 1 ( echo Error: failed to run core tests. Aborting.. diff --git a/ci/unit_tests.sh b/ci/unit_tests.sh index 14ae8059d..1ea881c95 100755 --- a/ci/unit_tests.sh +++ b/ci/unit_tests.sh @@ -5,7 +5,7 @@ # uses at least 1g of memory, If we don't do this we can get OOM issues when # installing gems. See https://github.com/elastic/logstash/issues/5179 export JRUBY_OPTS="-J-Xmx1g" -export GRADLE_OPTS="-Xmx2g -Dorg.gradle.daemon=false" +export GRADLE_OPTS="-Xmx2g -Dorg.gradle.daemon=false -Dorg.gradle.logging.level=info" export SPEC_OPTS="--order rand --format documentation" export CI=true