Skip to content

Commit 87e2428

Browse files
committed
github: free some disc space
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 <guennadi.liakhovetski@linux.intel.com>
1 parent 4094048 commit 87e2428

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/llext.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ jobs:
1717
platform: [mtl, lnl]
1818

1919
steps:
20+
- name: free space
21+
run: |
22+
sudo rm -rf /usr/share/dotnet
23+
sudo rm -rf /opt/ghc
24+
2025
- name: git clone sof
2126
uses: actions/checkout@v4
2227
with:

.github/workflows/zephyr.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,11 @@ jobs:
138138
filter: 'tree:0'
139139
path: ./workspace/sof
140140

141+
- name: free space
142+
run: |
143+
sudo rm -rf /usr/share/dotnet
144+
sudo rm -rf /opt/ghc
145+
141146
- name: west clones
142147

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

0 commit comments

Comments
 (0)