taojintianxia commented on code in PR #33819: URL: https://github.com/apache/shardingsphere/pull/33819#discussion_r1864163281
########## docs/document/content/user-manual/shardingsphere-proxy/startup/docker.cn.md: ########## @@ -26,8 +26,12 @@ docker pull apache/shardingsphere-proxy ```bash git clone https://github.com/apache/shardingsphere ./mvnw clean install -cd shardingsphere-distribution/shardingsphere-proxy-distribution -./mvnw clean package -Prelease,docker +cd distribution/proxy +../../mvnw clean package -Prelease,docker +``` +为加快构建速度,可用如下命令代替```./mvnw clean install```: +``` +./mvnw clean install -Prelease -T16C -DskipTests -Djacoco.skip=true -Dcheckstyle.skip=true -Drat.skip=true -Dmaven.javadoc.skip=true -B Review Comment: Release process does not support concurrency build. And, T16C will not accelerate the build process, T1C will especially on github ubuntu-latest. you could try it on a test environment. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
