Skip to content

Commit 9e7396e

Browse files
committed
Auto merge of #69252 - Mark-Simulacrum:disk-try, r=<try>
Dump largest files on disk, not just in cwd. This will try to debug the disk space issues we're seeing (and potentially become the "fix" PR). r? @ghost
2 parents 0176a9e + dd6e41c commit 9e7396e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/ci/scripts/dump-environment.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,9 @@ set +o pipefail
1717
du . | sort -nr | head -n100
1818
set -o pipefail
1919
echo
20+
21+
echo "biggest files:"
22+
set +o pipefail
23+
du -a / 2>/dev/null | sort -nr | head -n100
24+
set -o pipefail
25+
echo

0 commit comments

Comments
 (0)