Add df before tests start (#33627)

* Add df before tests start

As I'd quite like to know what the disk usage was *before* the job
started too.

* typo
This commit is contained in:
David Baker
2026-05-27 16:11:01 +01:00
committed by GitHub
parent efeef6cd84
commit d3a80e3ca7
+5
View File
@@ -37,6 +37,11 @@ jobs:
# Run multiple instances in parallel to speed up the tests
runner: [1, 2]
steps:
# Dump the disk usage before we start: this job frequently flakes with "No space left on device"
# so, with the one at the end too, this will let us work out how much disk has been used.
- name: df
run: df -h && df -i
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with: