From aef84320e05ae03393a79bed20873a2111105eda Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Sun, 16 Dec 2018 22:31:53 -0800 Subject: [PATCH] Double cache size for stable-perf --- .buildkite/hooks/pre-command | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/hooks/pre-command b/.buildkite/hooks/pre-command index 2f668b833f..5e9349ac39 100644 --- a/.buildkite/hooks/pre-command +++ b/.buildkite/hooks/pre-command @@ -18,7 +18,7 @@ export PS4="++" if [[ -d $d ]]; then du -hs "$d" read -r cacheSizeInGB _ < <(du -s --block-size=1000000000 "$d") - if [[ $cacheSizeInGB -gt 5 ]]; then + if [[ $cacheSizeInGB -gt 10 ]]; then echo "$d has gotten too large, removing it" rm -rf "$d" fi