mirror of
https://github.com/apache/nuttx.git
synced 2026-08-01 20:28:58 +00:00
ci/testing: Free disk space before pulling the CI Docker image
The MemBrowse analyze job intermittently failed unpacking the CI image with "no space left on device". Free /usr/local/lib/android before the docker pull, mirroring .github/workflows/build.yml. Signed-off-by: Michael Rogov Papernov <michael@membrowse.com>
This commit is contained in:
parent
2f73fe2267
commit
5b0dd20f3a
1 changed files with 13 additions and 0 deletions
13
.github/workflows/membrowse-report.yml
vendored
13
.github/workflows/membrowse-report.yml
vendored
|
|
@ -174,6 +174,19 @@ jobs:
|
|||
path: sources/apps
|
||||
fetch-depth: 1
|
||||
|
||||
# Free space before pulling the large NuttX CI image; ubuntu-latest ships
|
||||
# only ~14 GB free on / and the image otherwise fails to unpack with
|
||||
# "no space left on device". Mirrors the cleanup in .github/workflows/build.yml.
|
||||
- name: Show Disk Space
|
||||
run: df -h
|
||||
|
||||
- name: Free Disk Space (Ubuntu)
|
||||
run: |
|
||||
sudo rm -rf /usr/local/lib/android
|
||||
|
||||
- name: After CLEAN-UP Disk Space
|
||||
run: df -h
|
||||
|
||||
- name: Docker Login
|
||||
uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0
|
||||
with:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue