diff --git a/blt b/blt index b7e2bdcae5..6c2eb329c6 160000 --- a/blt +++ b/blt @@ -1 +1 @@ -Subproject commit b7e2bdcae5bd9f8250d05581d57dcfdf608bacd0 +Subproject commit 6c2eb329c6a9b02bb38be7739301955c392d6aa5 diff --git a/scripts/gitlab/build_and_test.sh b/scripts/gitlab/build_and_test.sh index 9b4409385b..71cd05b276 100755 --- a/scripts/gitlab/build_and_test.sh +++ b/scripts/gitlab/build_and_test.sh @@ -102,10 +102,19 @@ then rm -rf ${build_dir} 2>/dev/null mkdir -p ${build_dir} && cd ${build_dir} - cmake \ - -C ${hostconfig_path} \ - ${project_dir} - cmake --build . -j 32 + if [[ ${sys_type} == *toss_3* ]]; then + cmake \ + -DENABLE_CCACHE=ON \ + -DCCACHE_DIR=/collab/usr/global/tools/ccache/toss_3_x86_64_ib/ccache-4.2/bin/ccache \ + -C ${hostconfig_path} \ + ${project_dir} + cmake --build . -j 32 + else + cmake \ + -C ${hostconfig_path} \ + ${project_dir} + cmake --build . -j 32 + fi fi # Test