This is an automated email from the ASF dual-hosted git repository. hellostephen pushed a commit to branch hello-stephen-patch-10 in repository https://gitbox.apache.org/repos/asf/doris.git
commit f7d31cb705a0b900e2cf6f79c182ce5c0ad3e574 Author: Dongyang Li <[email protected]> AuthorDate: Wed Nov 12 17:14:40 2025 +0800 Fix conditional execution of regression test script --- regression-test/pipeline/common/doris-utils.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/regression-test/pipeline/common/doris-utils.sh b/regression-test/pipeline/common/doris-utils.sh index 22d7f807846..f37d73b9c9a 100644 --- a/regression-test/pipeline/common/doris-utils.sh +++ b/regression-test/pipeline/common/doris-utils.sh @@ -973,7 +973,9 @@ prepare_java_udf() { OLD_JAVA_HOME=${JAVA_HOME} JAVA_HOME="$(find /usr/lib/jvm -maxdepth 1 -type d -name 'java-8-*' | sed -n '1p')" export JAVA_HOME - if bash "${DORIS_HOME}"/../run-regression-test.sh --clean && + bash "${DORIS_HOME}"/../run-regression-test.sh --clean + if bash "${DORIS_HOME}"/../run-regression-test.sh --compile || + bash "${DORIS_HOME}"/../run-regression-test.sh --compile || bash "${DORIS_HOME}"/../run-regression-test.sh --compile; then echo else --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
