summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbuild.sh2
-rwxr-xr-xquick-build.sh2
2 files changed, 3 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 55848e157f3..47bc89e9e2b 100755
--- a/build.sh
+++ b/build.sh
@@ -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 $*