diff options
-rwxr-xr-x | build.sh | 2 | ||||
-rwxr-xr-x | quick-build.sh | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ #!/bin/sh +./stop.sh + # 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 -e -B -T0.5C -DforkCount=0.5C $* diff --git a/quick-build.sh b/quick-build.sh index f28c3838008..7a7f3a83e55 100755 --- a/quick-build.sh +++ b/quick-build.sh @@ -40,5 +40,5 @@ echo '' # Parallel executions of maven modules and tests. # Half of CPU core are used in to keep other half for OS and other programs. - +./stop.sh mvn clean install -T0.5C -B -e -DskipTests=true -Pdev $* |