Browse Source

[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
tags/5.2-RC1
Sébastien Lesaint 8 years ago
parent
commit
f6fee8429e
2 changed files with 3 additions and 1 deletions
  1. 2
    0
      build.sh
  2. 1
    1
      quick-build.sh

+ 2
- 0
build.sh View File

@@ -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 $*

+ 1
- 1
quick-build.sh View File

@@ -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 $*

Loading…
Cancel
Save