This is an automated email from the ASF dual-hosted git repository.
simbit18 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new 5b0dd20f3ad ci/testing: Free disk space before pulling the CI Docker
image
5b0dd20f3ad is described below
commit 5b0dd20f3adc39ba1e73f3cb217b608c0168c524
Author: Michael Rogov Papernov <[email protected]>
AuthorDate: Fri Jul 17 17:42:09 2026 +0100
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 <[email protected]>
---
.github/workflows/membrowse-report.yml | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/.github/workflows/membrowse-report.yml
b/.github/workflows/membrowse-report.yml
index 012a64d36d4..267fb9772b2 100644
--- a/.github/workflows/membrowse-report.yml
+++ b/.github/workflows/membrowse-report.yml
@@ -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: