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

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

commit 109c7ff261be834825e1c78c2c776c2ecb314a8a
Author: Chesnay Schepler <ches...@apache.org>
AuthorDate: Fri Aug 11 11:32:43 2023 +0200

    [FLINK-32834] Forward any additional args to maven
    
    For example: 'tools/ci/compile.sh -Dfast'
---
 tools/ci/compile.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/ci/compile.sh b/tools/ci/compile.sh
index 5fc899dd00b..bc349e3d53a 100755
--- a/tools/ci/compile.sh
+++ b/tools/ci/compile.sh
@@ -44,7 +44,7 @@ echo 
"==========================================================================
 EXIT_CODE=0
 
 $MVN clean deploy 
-DaltDeploymentRepository=validation_repository::default::file:$MVN_VALIDATION_DIR
 -Dflink.convergence.phase=install -Pcheck-convergence \
-    -Dmaven.javadoc.skip=true -U -DskipTests | tee $MVN_CLEAN_COMPILE_OUT
+    -Dmaven.javadoc.skip=true -U -DskipTests "${@}" | tee 
$MVN_CLEAN_COMPILE_OUT
 
 EXIT_CODE=${PIPESTATUS[0]}
 

Reply via email to