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 ed91753 commit 59a3383Copy full SHA for 59a3383
.github/workflows/build.yml
@@ -49,6 +49,16 @@ jobs:
49
- uses: maxim-lobanov/setup-xcode@v1
50
with:
51
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
62
- name: Build
63
id: build
64
run: ./build.${{ matrix.name }}.sh "${{ github.event.inputs.commitHash }}" "${{ github.event.inputs.configuration || 'release' }}"
0 commit comments