From a07a9265f1ed0ce3559ba8863c46eaf1d068dc52 Mon Sep 17 00:00:00 2001 From: Yuming Wang Date: Mon, 16 Dec 2019 13:48:02 +0800 Subject: [PATCH] Revert "[SPARK-30056][INFRA] Skip building test artifacts in `dev/make-distribution.sh`" This reverts commit 7c0ce285 --- dev/make-distribution.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/make-distribution.sh b/dev/make-distribution.sh index 8ba93aa56f00a..0b30eec76bb53 100755 --- a/dev/make-distribution.sh +++ b/dev/make-distribution.sh @@ -165,7 +165,7 @@ export MAVEN_OPTS="${MAVEN_OPTS:--Xmx2g -XX:ReservedCodeCacheSize=1g}" # Store the command as an array because $MVN variable might have spaces in it. # Normal quoting tricks don't work. # See: http://mywiki.wooledge.org/BashFAQ/050 -BUILD_COMMAND=("$MVN" clean package -DskipTests -Dmaven.test.skip=true $@) +BUILD_COMMAND=("$MVN" clean package -DskipTests $@) # Actually build the jar echo -e "\nBuilding with..."