From 070a4dd2fd799025f0d6bb3608f69358acd505c8 Mon Sep 17 00:00:00 2001 From: Jerome Forissier Date: Mon, 12 Feb 2024 10:52:16 +0100 Subject: [PATCH] ci: avoid "No space left on device" error Remove unneeded files from the root filesystem to avoid a "No space left on device" error. A similar trick was committed to optee_os for the same reason [1]. Link: https://github.com/OP-TEE/optee_os/commit/fa1950059f4128a9b58558d4970c153595463ff3 [1] Signed-off-by: Jerome Forissier Acked-by: Etienne Carriere --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10e6f9f2b..20086d274 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,8 @@ jobs: runs-on: ubuntu-latest container: jforissier/optee_os_ci:qemuv8_check2 steps: + - name: Remove /__t/* + run: rm -rf /__t/* - name: Restore build cache uses: actions/cache@v3 with: