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 ad93356 commit 601fa4dCopy full SHA for 601fa4d
zorg/buildbot/builders/sanitizers/buildbot_functions.sh
@@ -101,10 +101,12 @@ function clobber {
101
if [[ "$BUILDBOT_CLOBBER" != "" ]]; then
102
echo @@@BUILD_STEP clobber@@@
103
if [[ ! -v BUILDBOT_BUILDERNAME ]]; then
104
- echo "Clobbering is supported only on buildbot only!"
+ echo "Clobbering is supported on buildbot only!"
105
exit 1
106
fi
107
- rm_dirs ./*
+ find -maxdepth 1 -mindepth 1 -path ./llvm-project -prune -o -print -exec rm -rf {} \;
108
+ du -hs ./* | sort -h
109
+ return 0
110
else
111
BUILDBOT_BUILDERNAME=1 cleanup "$@"
112
0 commit comments