From 713571a7e03f93a2e1f78cc29de3e14cbaaad889 Mon Sep 17 00:00:00 2001 From: hwhbj Date: Sat, 29 Jul 2023 10:12:26 +0800 Subject: [PATCH] add build assessment plugin --- build/script/utils/make_compile.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build/script/utils/make_compile.sh b/build/script/utils/make_compile.sh index 8b10a9c7b..d9e9650f2 100644 --- a/build/script/utils/make_compile.sh +++ b/build/script/utils/make_compile.sh @@ -219,6 +219,12 @@ function install_gaussdb() make install -sj >> "$LOG_FILE" 2>&1 echo "End make install MPPDB" >> "$LOG_FILE" 2>&1 + ASSESSMENT_DIR=$ROOT_DIR/contrib/assessment + if [ -d $ASSESSMENT_DIR ]; then + cd $ASSESSMENT_DIR + make install >> "$LOG_FILE" 2>&1 + echo "End make install assessment" >> "$LOG_FILE" 2>&1 + fi cd "$ROOT_DIR" if [ "${make_check}" = 'on' ]; then