From 15db02f88fb48d5efd75c8cce6765e372d7ebd58 Mon Sep 17 00:00:00 2001 From: AJ Schmidt Date: Mon, 31 Jan 2022 14:42:21 -0500 Subject: [PATCH] add temporary debug statements --- build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sh b/build.sh index df0fea7be2a..47a0a3d19b4 100755 --- a/build.sh +++ b/build.sh @@ -210,6 +210,7 @@ if buildAll || hasArg libcudf; then # Record build times if [[ "$BUILD_REPORT_METRICS" == "ON" && -f "${LIB_BUILD_DIR}/.ninja_log" ]]; then + set -x echo "Formatting build metrics" python ${REPODIR}/cpp/scripts/sort_ninja_log.py ${LIB_BUILD_DIR}/.ninja_log --fmt xml > ${LIB_BUILD_DIR}/ninja_log.xml MSG="

" @@ -229,6 +230,7 @@ if buildAll || hasArg libcudf; then echo "$MSG" python ${REPODIR}/cpp/scripts/sort_ninja_log.py ${LIB_BUILD_DIR}/.ninja_log --fmt html --msg "$MSG" > ${LIB_BUILD_DIR}/ninja_log.html fi + set +x if [[ ${INSTALL_TARGET} != "" ]]; then cmake --build . -j${PARALLEL_LEVEL} --target install ${VERBOSE_FLAG}