We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c43daf commit 06ea8c4Copy full SHA for 06ea8c4
zorg/buildbot/builders/sanitizers/buildbot_functions.sh
@@ -104,7 +104,8 @@ function clobber {
104
echo "Clobbering is supported on buildbot only!"
105
exit 1
106
fi
107
- 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.
108
+ find -maxdepth 1 -mindepth 1 -path ./llvm-project -prune -o -path ./llvm_build0 -prune -o -print -exec rm -rf {} \;
109
du -hs ./* | sort -h
110
return 0
111
else
0 commit comments