From 79d7c44b66977bdcf0feeb089584467fe2aed8ee Mon Sep 17 00:00:00 2001 From: edoapra Date: Tue, 28 Feb 2023 18:13:21 -0800 Subject: [PATCH] print cache size --- travis/cache_store.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/travis/cache_store.sh b/travis/cache_store.sh index 0b26d89a42..37afcdef15 100755 --- a/travis/cache_store.sh +++ b/travis/cache_store.sh @@ -1,7 +1,6 @@ #!/bin/bash mkdir -p ~/apps || true - mkdir -p ~/cache/libext/lib ~/cache/libext/bin ~/cache/libext/include ~/cache/libext/mpich || true - mkdir -p ~/cache/libext/mpich/mpich || true + mkdir -p ~/cache/libext/lib ~/cache/libext/bin ~/cache/libext/include || true mkdir -p ~/cache/simint/simint_install || true mkdir -p ~/cache/tarballs || true mkdir -p ~/cache/libxc || true @@ -14,3 +13,6 @@ [ -f "src/libext/libxc/install/lib/libxc.a" ] && rsync -av src/libext/libxc/install ~/cache/libxc/. || true echo "cache stored" ls -Rla ~/cache + du -sh ~/cache + du -sh ~/cache/* || true + du -sh ~/cache/*/* || true