Skip to content

Commit df30926

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

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,15 @@ jobs:
3232
lfs: true
3333
- uses: ./.github/actions/setup
3434
- run: cargo test --features integration
35+
- name: Show disk usage
36+
run: |
37+
echo "=== df -h ==="
38+
df -h
39+
echo "=== du -sh / ==="
40+
du -h / | sort -hr | head -n 50
41+
echo "=== cargo dirs ==="
42+
du -sh ~/.cargo 2>/dev/null || true
43+
du -sh target 2>/dev/null || true
3544
3645
tpch-test:
3746
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)