You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicecomb.apache.org by ni...@apache.org on 2019/07/25 14:06:17 UTC

[servicecomb-pack] branch SCB-1395 updated: SCB-1395 Using mvn -B to reduce the log size

This is an automated email from the ASF dual-hosted git repository.

ningjiang pushed a commit to branch SCB-1395
in repository https://gitbox.apache.org/repos/asf/servicecomb-pack.git


The following commit(s) were added to refs/heads/SCB-1395 by this push:
     new 109c37f  SCB-1395 Using mvn -B to reduce the log size
109c37f is described below

commit 109c37f453bf6dcc079b653ca43e47ab23fcc1cd
Author: Willem Jiang <wi...@gmail.com>
AuthorDate: Thu Jul 25 22:05:38 2019 +0800

    SCB-1395 Using mvn -B to reduce the log size
---
 scripts/test.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/scripts/test.sh b/scripts/test.sh
index d9bb8e6..4e7ef9e 100755
--- a/scripts/test.sh
+++ b/scripts/test.sh
@@ -22,7 +22,7 @@ then
   echo "Don't do anything here for the cron job!"
 else
   echo "Running the unit tests and integration tests here!"
-  mvn clean install -Pjacoco -Pdocker -P${SPRING_BOOT_PROFILE} coveralls:report \
-    && mvn clean verify -f demo -Pdemo -Pdocker -P${SPRING_BOOT_PROFILE} -Ddocker.useColor=false -Ddocker.showLogs \
-    && mvn clean verify -f acceptance-tests -Pdemo -Pdocker -P${SPRING_BOOT_PROFILE} -Ddocker.useColor=false -Ddocker.showLogs
+  mvn clean install -B -Pjacoco -Pdocker -P${SPRING_BOOT_PROFILE} coveralls:report \
+    && mvn clean verify -B -f demo -Pdemo -Pdocker -P${SPRING_BOOT_PROFILE} -Ddocker.useColor=false -Ddocker.showLogs \
+    && mvn clean verify -B -f acceptance-tests -Pdemo -Pdocker -P${SPRING_BOOT_PROFILE} -Ddocker.useColor=false -Ddocker.showLogs
 fi