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:
@@ -21,6 +21,11 @@ jobs:
|
|||||||
issues: read
|
issues: read
|
||||||
pull-requests: read
|
pull-requests: read
|
||||||
steps:
|
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
|
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
@@ -58,3 +63,8 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: received-images
|
name: received-images
|
||||||
path: packages/shared-components/__vis__/linux
|
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() }}
|
||||||
|
|||||||
@@ -37,11 +37,6 @@ jobs:
|
|||||||
# Run multiple instances in parallel to speed up the tests
|
# Run multiple instances in parallel to speed up the tests
|
||||||
runner: [1, 2]
|
runner: [1, 2]
|
||||||
steps:
|
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
|
- name: Checkout code
|
||||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
|
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
|
||||||
with:
|
with:
|
||||||
@@ -111,6 +106,11 @@ jobs:
|
|||||||
- packages/module-api
|
- packages/module-api
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
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
|
- name: Checkout code
|
||||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
|
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
|
||||||
with:
|
with:
|
||||||
|
|||||||
Reference in New Issue
Block a user