Skip to content

Commit 06ea8c4

Browse files
committed
[sanitizer] Try to keep llvm_build0
1 parent 7c43daf commit 06ea8c4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

zorg/buildbot/builders/sanitizers/buildbot_functions.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@ function clobber {
104104
echo "Clobbering is supported on buildbot only!"
105105
exit 1
106106
fi
107-
find -maxdepth 1 -mindepth 1 -path ./llvm-project -prune -o -print -exec rm -rf {} \;
107+
# 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 {} \;
108109
du -hs ./* | sort -h
109110
return 0
110111
else

0 commit comments

Comments
 (0)