From d3a80e3ca7985786289a2dfe6fbd13bce07b3a5f Mon Sep 17 00:00:00 2001 From: David Baker Date: Wed, 27 May 2026 16:11:01 +0100 Subject: [PATCH] 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 --- .github/workflows/tests.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 332798676e..fbdfc10d30 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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: