CI: fix No space left on device message

Add jlumbroso/free-disk-space action to clean-up the workspace
before running action.

Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
This commit is contained in:
Arnaud Pouliquen
2025-10-15 16:25:26 +02:00
committed by Arnaud Pouliquen
parent ad39b4e740
commit 31acf64533
2 changed files with 24 additions and 0 deletions
@@ -54,6 +54,18 @@ jobs:
name: Zephyr build with a version that is known to work
runs-on: ubuntu-latest
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
# this might remove tools that are actually needed,
# if set to "true" but frees about 6 GB
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true
- name: Checkout open-amp
uses: actions/checkout@v4
with:
+12
View File
@@ -27,6 +27,18 @@ jobs:
name: 'Zephyr build from latest on main'
runs-on: ubuntu-latest
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
# this might remove tools that are actually needed,
# if set to "true" but frees about 6 GB
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true
- name: Checkout open-amp
uses: actions/checkout@v4
with: