We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83efd9e commit c4df443Copy full SHA for c4df443
.github/workflows/ci.yml
@@ -32,6 +32,20 @@ jobs:
32
lfs: true
33
- uses: ./.github/actions/setup
34
- 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 "=== home directory ==="
48
+ du -sh ~ 2>/dev/null | head -n 10 || true
49
50
tpch-test:
51
runs-on: ubuntu-latest
0 commit comments