Skip to content

Commit d31d7a6

Browse files
committed
More disk space logging in build workflow
Signed-off-by: itowlson <[email protected]>
1 parent b827629 commit d31d7a6

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/build.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,13 +169,16 @@ jobs:
169169
continue-on-error: true
170170
if: ${{ matrix.runner == 'macos-14' }}
171171

172-
- name: Check disk space (After)
172+
- name: Check disk space (after MacOS freeing)
173173
run: df -h /
174174

175175
- name: Run Unit Tests
176176
run: |
177177
make test-unit
178178
179+
- name: Check disk space (after unit tests)
180+
run: df -h /
181+
179182
- name: Run Integration Tests
180183
run: |
181184
make test-integration
@@ -184,6 +187,10 @@ jobs:
184187
# Only run integration tests on macOS as they will be run on ubuntu separately
185188
if: ${{ matrix.runner == 'macos-14' }}
186189

190+
- name: Check disk space (after integration tests)
191+
run: df -h /
192+
193+
187194
all-integration-tests:
188195
# run on a larger runner for more SSD/resource access
189196
runs-on: ubuntu-22.04-4core-spin
@@ -302,6 +309,12 @@ jobs:
302309
with:
303310
openssl-windows: "${{ matrix.os == 'windows-latest' }}"
304311

312+
- name: Check disk space (before release build)
313+
run: df -h /
314+
305315
- name: build release
306316
shell: bash
307317
run: cargo build --release ${{ matrix.config.extraArgs }}
318+
319+
- name: Check disk space (after release build)
320+
run: df -h /

0 commit comments

Comments
 (0)