More 'df' debugging in GHA workflows (#33751)

Firstly, I add4ed the df before to the wrong job. Secondly, shared
component visual tests is now flaking the same way, so add the same
there.
This commit is contained in:
David Baker
2026-06-04 18:03:10 +01:00
committed by GitHub
parent bb07f84e41
commit a7b70ee9cc
2 changed files with 15 additions and 5 deletions
@@ -21,6 +21,11 @@ jobs:
issues: read
pull-requests: read
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: dfbefore
run: df -h && df -i
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
with:
persist-credentials: false
@@ -58,3 +63,8 @@ jobs:
with:
name: received-images
path: packages/shared-components/__vis__/linux
# Dump the disk usage on failure, because this job seems to fail with disk fills sometimes
- name: df
run: df -h && df -i
if: ${{ failure() }}
+5 -5
View File
@@ -37,11 +37,6 @@ 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: dfbefore
run: df -h && df -i
- name: Checkout code
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
with:
@@ -111,6 +106,11 @@ jobs:
- packages/module-api
runs-on: ubuntu-24.04
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: dfbefore
run: df -h && df -i
- name: Checkout code
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
with: