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 6ac74dcCopy full SHA for 6ac74dc
.github/workflows/ci.yml
@@ -32,6 +32,18 @@ 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 target 2>/dev/null || true
45
+ echo "=== home directory ==="
46
+ du -sh ~ 2>/dev/null | head -n 10 || true
47
48
tpch-test:
49
runs-on: ubuntu-latest
0 commit comments