Skip to content

Commit

Permalink
github: free some disc space
Browse files Browse the repository at this point in the history
We're getting GitHub workflow failures like:

docker: failed to register layer: write /usr/lib/x86_64-linux-gnu/libz3.so.4: no space left on device.

e.g. in
https://github.com/thesofproject/sof/actions/runs/12651056289/job/35250849879?pr=9702
This patch frees some space before running tests.

Signed-off-by: Guennadi Liakhovetski <[email protected]>
  • Loading branch information
lyakh committed Jan 7, 2025
1 parent 4094048 commit c6f362e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/zephyr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,11 @@ jobs:
filter: 'tree:0'
path: ./workspace/sof

- name: free space
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
- name: west clones

run: pip3 install west && cd workspace/sof/ && west init -l &&
Expand Down

0 comments on commit c6f362e

Please sign in to comment.