Skip to content

Commit 7309169

Browse files
committed
Debug: why are the runners running out of disk space?
1 parent 6f6f75b commit 7309169

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/test.yml

+10
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,23 @@ jobs:
9090
test: false
9191

9292
steps:
93+
- name: Print disk usage
94+
run: |
95+
df -h /
96+
du -sh /home/runner/*
9397
- uses: actions/checkout@v3
9498

9599
- uses: ./.github/actions/setup-build
96100
with:
97101
ghc: ${{ matrix.ghc }}
98102
os: ${{ runner.os }}
99103

104+
- name: Print disk usage
105+
run: |
106+
df -h /
107+
du -sh /home/runner/*
108+
109+
100110
- name: Build
101111
run: cabal build all
102112

0 commit comments

Comments
 (0)