Skip to content

Commit

Permalink
[sanitizer] Print ccache stats for stage1
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalybuka committed Dec 10, 2024
1 parent 601fa4d commit 6467b8c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions zorg/buildbot/builders/sanitizers/buildbot_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -173,11 +173,13 @@ function build_stage1_clang_impl {
if clang -v ; then
cmake_stage1_options+=" -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++"
fi
ccache -z || true
(cd ${STAGE1_DIR} && cmake ${cmake_stage1_options} $LLVM && ninja) || {
touch "${STAGE1_DIR}/delete_next_time"
return 1
}
md5sum ${STAGE1_DIR}/bin/clang || true
ccache -s || true
}

function build_stage1_clang {
Expand Down

0 comments on commit 6467b8c

Please sign in to comment.