We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba32722 commit 4e84a0cCopy full SHA for 4e84a0c
.github/workflows/build.yml
@@ -163,6 +163,22 @@ jobs:
163
rust-cache: true
164
nomad: true
165
166
+ - name: Check disk space (Before)
167
+ run: df -h /
168
+
169
+ # Clear space on macOS runner which is prone to running out of space
170
+ - name: Free disk space
171
+ run: |
172
+ sudo rm -rf ~/.dotnet
173
+ sudo rm -rf /Library/Android
174
+ sudo rm -rf /Library/Developer/CoreSimulator
175
+ find /Applications -name "Xcode_*" -maxdepth 1 -mindepth 1 | xargs rm -rf
176
+ continue-on-error: true
177
+ if: ${{ matrix.runner == 'macos-14' }}
178
179
+ - name: Check disk space (After)
180
181
182
- name: Run Unit Tests
183
run: |
184
make test-unit
0 commit comments