From f6fee8429e966b36799ec91b4626ae1beb18c6d9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=A9bastien=20Lesaint?= Date: Tue, 11 Aug 2015 12:31:06 +0200 Subject: [PATCH] [SCRIPT] build and quick-build must stop SQ instance this will save having to kill the instance started with start.sh because mvn clean deleted the pid file --- build.sh | 2 ++ quick-build.sh | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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 $* -- 2.39.5