Skip to content

Commit

Permalink
replace remaining -q option for maven
Browse files Browse the repository at this point in the history
  • Loading branch information
Thespica committed Aug 25, 2024
1 parent c3abcc1 commit d0aa5e3
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion analytical_engine/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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..."
Expand Down
4 changes: 2 additions & 2 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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/"
Expand Down
4 changes: 2 additions & 2 deletions interactive_engine/compiler/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:=
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion k8s/dockerfiles/graphscope-store.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d0aa5e3

Please sign in to comment.