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

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


The following commit(s) were added to refs/heads/master by this push:
     new de18ee051 IMPALA-14041 ADDENDUM: Recreate jar file after tests run.
de18ee051 is described below

commit de18ee051e7c843d21a739cd527127316a7b5a64
Author: Steve Carlin <[email protected]>
AuthorDate: Wed Jun 4 16:55:42 2025 -0700

    IMPALA-14041 ADDENDUM: Recreate jar file after tests run.
    
    The build was unstable because the "mvn -fae" command in
    the java/calcite-planner was removing the jar file due to
    the "clean" plugin which was needed because of a mvn bug.
    
    This caused the custom_cluster test_calcite_planner.py test to
    fail because it wouldn't find the jar file.
    
    Adding the "install" ensures the jar file will be recreated
    after the tests are run.
    
    Change-Id: I04e2c1b9bef26535ca571b87fdbd3e84c61b4b24
    Reviewed-on: http://gerrit.cloudera.org:8080/22982
    Reviewed-by: Impala Public Jenkins <[email protected]>
    Tested-by: Impala Public Jenkins <[email protected]>
---
 bin/run-all-tests.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/run-all-tests.sh b/bin/run-all-tests.sh
index 69d2b07aa..5c8b28187 100755
--- a/bin/run-all-tests.sh
+++ b/bin/run-all-tests.sh
@@ -321,7 +321,7 @@ do
 
     # Run Calcite FE tests
     pushd ${IMPALA_HOME}/java/calcite-planner
-    if ! "${IMPALA_HOME}/bin/mvn-quiet.sh" -fae test ; then
+    if ! "${IMPALA_HOME}/bin/mvn-quiet.sh" -fae test install ; then
       TEST_RET_CODE=1
     fi
     popd

Reply via email to