You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@helix.apache.org by hz...@apache.org on 2020/08/22 20:11:05 UTC

[helix] branch master updated: Skip compiling tests in build script

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

hzlu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/helix.git


The following commit(s) were added to refs/heads/master by this push:
     new 786d597  Skip compiling tests in build script
786d597 is described below

commit 786d597ad6f8abca5af77f7ebdccbbc8d0ea0845
Author: Huizhi Lu <ih...@gmail.com>
AuthorDate: Sat Aug 22 13:10:55 2020 -0700

    Skip compiling tests in build script
    
    Skipping compiling tests saves 25%(15s) time: 60s -> 45s on a Linux with HDD
---
 build | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/build b/build
index cf1a0eb..a9a8b3c 100755
--- a/build
+++ b/build
@@ -18,4 +18,5 @@
 # specific language governing permissions and limitations
 # under the License.
 #
-mvn clean install -Dmaven.test.skip.exec=true
+
+mvn clean install -Dmaven.test.skip=true