File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change 3232 lfs : true
3333 - uses : ./.github/actions/setup
3434 - run : cargo test --features integration
35+ - name : Show disk usage
36+ if : always()
37+ run : |
38+ echo "=== df -h ==="
39+ df -h
40+ echo "=== Top directories in workspace ==="
41+ du -h . 2>/dev/null | sort -hr | head -n 20 || true
42+ echo "=== cargo dirs ==="
43+ du -sh ~/.cargo 2>/dev/null || true
44+ du -sh ~/.cargo/registry 2>/dev/null || true
45+ du -sh ~/.cargo/git 2>/dev/null || true
46+ du -sh target 2>/dev/null || true
47+ echo "=== target/debug/deps sizes ==="
48+ du -h target/debug/deps 2>/dev/null | sort -hr | head -n 30 || true
49+ echo "=== home directory ==="
50+ du -sh ~ 2>/dev/null | head -n 10 || true
3551
3652 tpch-test :
3753 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments