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 329c46b commit df30926Copy full SHA for df30926
.github/workflows/ci.yml
@@ -32,6 +32,15 @@ jobs:
32
lfs: true
33
- uses: ./.github/actions/setup
34
- 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
44
45
tpch-test:
46
runs-on: ubuntu-latest
0 commit comments