From 7f74238adc4d4649c807d4939d7dd1ac13cfdf32 Mon Sep 17 00:00:00 2001 From: Dongyang Li Date: Sun, 19 Nov 2023 22:03:22 +0800 Subject: [PATCH] Update check-pr-if-need-run-build.sh --- regression-test/pipeline/common/check-pr-if-need-run-build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/regression-test/pipeline/common/check-pr-if-need-run-build.sh b/regression-test/pipeline/common/check-pr-if-need-run-build.sh index 452f4483158985..df4cd3c5102c5a 100755 --- a/regression-test/pipeline/common/check-pr-if-need-run-build.sh +++ b/regression-test/pipeline/common/check-pr-if-need-run-build.sh @@ -81,6 +81,7 @@ https://github.com/apache/doris/pull/${PULL_NUMBER}/files all change files: } _only_modified_regression_conf() { + if [[ -n ${added_files} || -n ${removed_files} ]]; then echo "Not only modified regression conf, find added/removed files" && return 1; fi for f in ${modified_files}; do if [[ "${f}" == "regression-test/pipeline/p0/conf/regression-conf.groovy" ]] || [[ "${f}" == "regression-test/pipeline/p1/conf/regression-conf.groovy" ]]; then @@ -136,6 +137,7 @@ need_run_regression_p0() { [[ "${af}" == 'gensrc'* ]] || [[ "${af}" == 'regression-test'* ]] || [[ "${af}" == 'thirdparty'* ]] || + [[ "${af}" == 'docker'* ]] || [[ "${af}" == 'ui'* ]] || [[ "${af}" == 'webroot'* ]] || [[ "${af}" == 'build.sh' ]] ||