diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-03-18 01:04:53 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-03-18 14:11:39 +0100 |
commit | 66a8b593e76a9f0d4a4381139a54590fed354638 (patch) | |
tree | 50042cc089d52b8a252f501231dd9ad4b141cce1 | |
parent | 8f82f95c1c8355228a3d405c8a135a4acb008969 (diff) | |
download | rneovim-66a8b593e76a9f0d4a4381139a54590fed354638.tar.gz rneovim-66a8b593e76a9f0d4a4381139a54590fed354638.tar.bz2 rneovim-66a8b593e76a9f0d4a4381139a54590fed354638.zip |
ci/travis: report cache size
-rwxr-xr-x | ci/before_cache.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ci/before_cache.sh b/ci/before_cache.sh index 2a5c6cfff0..d99b8e68c6 100755 --- a/ci/before_cache.sh +++ b/ci/before_cache.sh @@ -11,6 +11,9 @@ source "${CI_DIR}/common/suite.sh" rm -rf "${HOME}/.cache/pip/log" rm -f "${HOME}/.cache/pip/selfcheck.json" +echo "before_cache.sh: cache size" +du -d 2 "${HOME}/.cache" | sort -n + # Update the third-party dependency cache only if the build was successful. if ended_successfully; then rm -rf "${HOME}/.cache/nvim-deps" |