This is an automated email from the ASF dual-hosted git repository.
upthewaterspout pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/develop by this push:
new d03ee19 GEODE-6447: Honor the PARALLEL_GRADLE flag in builds
d03ee19 is described below
commit d03ee19b01f1d331e7b97252d7b49de27b7be9e5
Author: Dan Smith <[email protected]>
AuthorDate: Wed Mar 13 08:57:50 2019 -0700
GEODE-6447: Honor the PARALLEL_GRADLE flag in builds
The concourse jobs where we tried to turn off parallel gradle were still
running gradle in parallel, because it's the default. Pass --no-parallel
if the job is configured not to run in parallel.
This was causing port/file related conflicts in the windows tests, which
are set to not run in parallel.
---
ci/scripts/execute_tests.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ci/scripts/execute_tests.sh b/ci/scripts/execute_tests.sh
index a4e793e..42c4e1b 100755
--- a/ci/scripts/execute_tests.sh
+++ b/ci/scripts/execute_tests.sh
@@ -39,7 +39,7 @@ REPODIR=$(cd geode; git rev-parse --show-toplevel)
if [[ ${PARALLEL_GRADLE:-"true"} == "true" ]]; then
PARALLEL_GRADLE="--parallel"
else
- PARALLEL_GRADLE=""
+ PARALLEL_GRADLE="--no-parallel"
fi
DEFAULT_GRADLE_TASK_OPTIONS="${PARALLEL_GRADLE} --console=plain --no-daemon"
GRADLE_SKIP_TASK_OPTIONS="-x javadoc -x spotlessCheck -x rat"