diff options
Diffstat (limited to 'quick-build.sh')
-rwxr-xr-x | quick-build.sh | 5 |
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 $* |