Skip to content

Commit ed7020f

Browse files
wip - print disk space
1 parent 329c46b commit ed7020f

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,18 @@ jobs:
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 target 2>/dev/null || true
45+
echo "=== home directory ==="
46+
du -sh ~ 2>/dev/null | head -n 10 || true
3547
3648
tpch-test:
3749
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)