Skip to content

Commit

Permalink
[sanitizer] Try to keep llvm_build0
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalybuka committed Dec 11, 2024
1 parent 7c43daf commit 06ea8c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion zorg/buildbot/builders/sanitizers/buildbot_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ function clobber {
echo "Clobbering is supported on buildbot only!"
exit 1
fi
find -maxdepth 1 -mindepth 1 -path ./llvm-project -prune -o -print -exec rm -rf {} \;
# Keep sources in ./llvm-project and ./llvm_build0 for faster builds.
find -maxdepth 1 -mindepth 1 -path ./llvm-project -prune -o -path ./llvm_build0 -prune -o -print -exec rm -rf {} \;
du -hs ./* | sort -h
return 0
else
Expand Down

0 comments on commit 06ea8c4

Please sign in to comment.