File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -153,6 +153,14 @@ jobs:
153153 timezoneMacos : ' Pacific/Auckland'
154154 - name : Check out libOpenCOR
155155 uses : actions/checkout@v4
156+ - name : Free disk space (Linux only)
157+ if : ${{ runner.os == 'Linux' }}
158+ run : |
159+ df -h
160+ sudo rm -rf /opt/hostedtoolcache
161+ df -h
162+ sudo docker image prune --all --force
163+ df -h
156164 - name : Configure MSVC
157165 if : ${{ runner.os == 'Windows' }}
158166 uses : ilammy/msvc-dev-cmd@v1
@@ -170,6 +178,9 @@ jobs:
170178 CIBW_MANYLINUX_X86_64_IMAGE : manylinux_2_34
171179 CIBW_MANYLINUX_AARCH64_IMAGE : manylinux_2_34
172180 CIBW_SKIP : ' cp38* *musllinux*'
181+ - name : Check disk space after build
182+ if : ${{ runner.os == 'Linux' }}
183+ run : df -h
173184 - name : Upload Python wheel artifacts
174185 uses : actions/upload-artifact@v4
175186 with :
You can’t perform that action at this time.
0 commit comments