Skip to content

Commit 4184e24

Browse files
committed
ci: Attempt to free up even more space for the coverage job
1 parent f37bf2f commit 4184e24

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/coverage.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,10 @@ jobs:
4242
# This CI workflow can run into space issue, so we're cleaning up some
4343
# space here.
4444
- name: Create some more space
45-
run: rm -rf /opt/hostedtoolcache
45+
run: |
46+
cd /opt
47+
find . -maxdepth 1 -mindepth 1 '!' -path ./containerd '!' -path ./actionarchivecache '!' -path ./runner '!' -path ./runner-cache -exec rm -rf '{}' ';'
48+
rm -rf /opt/hostedtoolcache
4649
4750
- name: Checkout repository
4851
uses: actions/checkout@v4

0 commit comments

Comments
 (0)