From 5b0dd20f3adc39ba1e73f3cb217b608c0168c524 Mon Sep 17 00:00:00 2001 From: Michael Rogov Papernov Date: Fri, 17 Jul 2026 17:42:09 +0100 Subject: [PATCH] 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 --- .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: