From d0aa5e339a2581316f0027cd7f3eb16506253162 Mon Sep 17 00:00:00 2001 From: Thespica Date: Mon, 26 Aug 2024 00:48:40 +0800 Subject: [PATCH] replace remaining -q option for maven --- Makefile | 2 +- analytical_engine/CMakeLists.txt | 2 +- docs/Makefile | 4 ++-- interactive_engine/compiler/Makefile | 4 ++-- k8s/dockerfiles/graphscope-store.Dockerfile | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 683498372d88..68d297d95010 100644 --- a/Makefile +++ b/Makefile @@ -158,7 +158,7 @@ interactive: $(INTERACTIVE_DIR)/assembly/target/graphscope.tar.gz $(INTERACTIVE_DIR)/assembly/target/graphscope.tar.gz: cd $(INTERACTIVE_DIR) && \ mvn --version && \ - mvn package -DskipTests -Drust.compile.mode=$(BUILD_TYPE) -P graphscope -Drevision=$(VERSION) --quiet + mvn package -DskipTests -Drust.compile.mode=$(BUILD_TYPE) -P graphscope -Drevision=$(VERSION) --no-transfer-progress learning-install: learning mkdir -p $(INSTALL_PREFIX) diff --git a/analytical_engine/CMakeLists.txt b/analytical_engine/CMakeLists.txt index bac1a4b1492d..272b3ba59059 100644 --- a/analytical_engine/CMakeLists.txt +++ b/analytical_engine/CMakeLists.txt @@ -511,7 +511,7 @@ if(ENABLE_JAVA_SDK) add_custom_command( OUTPUT "${GAE_JAVA_RUNTIME_JAR}" - COMMAND mvn -Drevision=${GRAPHSCOPE_ANALYTICAL_JAR_VERSION} clean install -DskipTests --quiet + COMMAND mvn -Drevision=${GRAPHSCOPE_ANALYTICAL_JAR_VERSION} clean install -DskipTests --no-transfer-progress DEPENDS gs_proto WORKING_DIRECTORY ${GAE_JAVA_DIR} COMMENT "Building GAE-java..." diff --git a/docs/Makefile b/docs/Makefile index 1198864e57a2..defb911b4cd6 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -2,7 +2,7 @@ # MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST))) WORKING_DIR := $(dir $(MKFILE_PATH)) -M2_REPO := $(shell mvn help:evaluate -Dexpression=settings.localRepository -q -DforceStdout) +M2_REPO := $(shell mvn help:evaluate -Dexpression=settings.localRepository --no-transfer-progress -DforceStdout) # You can set these variables from the command line, and also @@ -44,7 +44,7 @@ clean: -DskipTests \ -Djavadoc.output.directory=${WORKING_DIR}/$(BUILDDIR)/${TAG}/$@/reference \ -Djavadoc.output.destDir=gae_java \ - --quiet + --no-transfer-progress # sphinx will append the `flex/` part to the output directory @echo "Building Flex doc to $(BUILDDIR)/${TAG}/$@/reference/" diff --git a/interactive_engine/compiler/Makefile b/interactive_engine/compiler/Makefile index b1a12978074d..120afb307132 100644 --- a/interactive_engine/compiler/Makefile +++ b/interactive_engine/compiler/Makefile @@ -18,7 +18,7 @@ rpc.target:=start_rpc_server target.revision:=0.0.1-SNAPSHOT -QUIET_OPT := --quiet +LOG_OUTPUT_OPT := --no-transfer-progress query:= physical:= @@ -28,7 +28,7 @@ config.path:=conf/ir.compiler.properties build: cd $(CUR_DIR)/.. && \ - mvn clean install -DskipTests -Drevision=${target.revision} -Pexperimental ${QUIET_OPT} && \ + mvn clean install -DskipTests -Drevision=${target.revision} -Pexperimental ${LOG_OUTPUT_OPT} && \ cd $(CUR_DIR)/../executor/ir/integrated && cargo build --release --bin $(rpc.target) clean: diff --git a/k8s/dockerfiles/graphscope-store.Dockerfile b/k8s/dockerfiles/graphscope-store.Dockerfile index 19b694b3f085..9577acb66da7 100644 --- a/k8s/dockerfiles/graphscope-store.Dockerfile +++ b/k8s/dockerfiles/graphscope-store.Dockerfile @@ -18,7 +18,7 @@ USER graphscope RUN cd /home/graphscope/graphscope \ && . ~/.graphscope_env \ && cd /home/graphscope/graphscope/interactive_engine \ - && mvn clean package -P groot -DskipTests --quiet -Drust.compile.mode="$profile" \ + && mvn clean package -P groot -DskipTests --no-transfer-progress -Drust.compile.mode="$profile" \ && tar xzf /home/graphscope/graphscope/interactive_engine/assembly/target/groot.tar.gz -C /home/graphscope/ # build coordinator