提交 f0a55d41 编写于 作者: A Ashwin Agrawal

Reduce noise during compilation in CI with -s.

上级 c77a6c50
......@@ -86,9 +86,9 @@ function build_gpdb() {
# make it much faster, and -j4 is small enough to not hurt too badly even on
# a single-CPU system
if [ -n "$1" ]; then
make "$1" GPROOT=/usr/local PARALLEL_MAKE_OPTS=-j4 dist
make "$1" GPROOT=/usr/local PARALLEL_MAKE_OPTS=-j4 -s dist
else
make GPROOT=/usr/local PARALLEL_MAKE_OPTS=-j4 dist
make GPROOT=/usr/local PARALLEL_MAKE_OPTS=-j4 -s dist
fi
popd
}
......@@ -102,7 +102,7 @@ function build_gppkg() {
function unittest_check_gpdb() {
pushd $GPDB_SRC_PATH
source $GREENPLUM_INSTALL_DIR/greenplum_path.sh
make GPROOT=/usr/local unittest-check
make GPROOT=/usr/local -s unittest-check
popd
}
......@@ -112,7 +112,7 @@ function build_pxf() {
export BUILD_NUMBER="${TARGET_OS}"
export PXF_HOME="${GREENPLUM_INSTALL_DIR}/pxf"
export JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF8
make install DATABASE=gpdb
make install -s DATABASE=gpdb
popd
}
......
......@@ -52,8 +52,8 @@ function build_gpdb() {
# value based on number of CPUs or anything like that. Going above -j4 wouldn't
# make it much faster, and -j4 is small enough to not hurt too badly even on
# a single-CPU system
make -j4
make install
make -j4 -s
make -s install
popd
}
......
......@@ -27,7 +27,7 @@ function build_gpdb() {
--with-libraries=${CWD}/depends/build/lib \
--with-includes=${CWD}/depends/build/include \
--prefix=${GREENPLUM_INSTALL_DIR}
make -j4
make -j4 -s
LD_LIBRARY_PATH=${CWD}/depends/build/lib make install
popd
install_external_depends
......
......@@ -32,7 +32,7 @@ function gen_env(){
source /opt/gcc_env.sh
cd "\${1}/gpdb_src"
source gpAux/gpdemo/gpdemo-env.sh
make ${MAKE_TEST_COMMAND}
make -s ${MAKE_TEST_COMMAND}
EOF
chmod a+x /opt/run_test.sh
......
......@@ -50,7 +50,7 @@ FEOF
source ${GREENPLUM_INSTALL_DIR}/greenplum_path.sh
source \${SRC_DIR}/gpAux/gpdemo/gpdemo-env.sh
cd \${SRC_DIR}
make ${MAKE_TEST_COMMAND}
make -s ${MAKE_TEST_COMMAND}
EOF
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册