Skip to content

Commit 59a3383

Browse files
committed
Try cleanup
1 parent ed91753 commit 59a3383

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,16 @@ jobs:
4949
- uses: maxim-lobanov/setup-xcode@v1
5050
with:
5151
xcode-version: 16.4
52+
- name: Cleanup
53+
run: |
54+
echo "Removing all simulators"
55+
xcrun simctl delete all
56+
for xcode_path in /Applications/Xcode*.app; do
57+
if [[ -d "$xcode_path" ]] && [[ "$xcode_path" != "/Applications/Xcode_16.4.app" ]]; then
58+
echo "Removing $xcode_path"
59+
rm -rf "$xcode_path"
60+
fi
61+
done
5262
- name: Build
5363
id: build
5464
run: ./build.${{ matrix.name }}.sh "${{ github.event.inputs.commitHash }}" "${{ github.event.inputs.configuration || 'release' }}"

0 commit comments

Comments
 (0)