Trying to fix Circle by killing all gradle deamons before running a build and lowering memory usage

This commit is contained in:
Marcin Grzejszczak
2019-08-19 10:33:34 +02:00
parent dd57966746
commit 47192ecf75
3 changed files with 33 additions and 3 deletions

View File

@@ -7,4 +7,4 @@ set -e
[[ -z "${CORES}" ]] && CORES=1
echo -e "\n\nRUNNING FAST BUILD (NO INTEGRATION TESTS) WITH [${CORES}] CORES\n\n"
./mvnw clean install -Pdocs,fast -T ${CORES}
./mvnw clean install -Pdocs,fast -T ${CORES} -Dinvoker.parallelThreads=${CORES}