aboutsummaryrefslogtreecommitdiffstats
path: root/quick-build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'quick-build.sh')
-rwxr-xr-xquick-build.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/quick-build.sh b/quick-build.sh
index e819d73c139..f28c3838008 100755
--- a/quick-build.sh
+++ b/quick-build.sh
@@ -38,4 +38,7 @@ echo ''
echo ''
echo ''
-mvn clean install -e -DskipTests -Pdev $*
+# Parallel executions of maven modules and tests.
+# Half of CPU core are used in to keep other half for OS and other programs.
+
+mvn clean install -T0.5C -B -e -DskipTests=true -Pdev $*