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 18adfcc commit 0953d9aCopy full SHA for 0953d9a
1 file changed
.github/workflows/ios.yml
@@ -47,6 +47,15 @@ jobs:
47
working-directory: example
48
run: yarn pod
49
50
+ - name: "Optimize simulator with simslim"
51
+ run: |
52
+ brew install mobai-app/tap/simslim
53
+ # Apply simslim optimization to all available simulators
54
+ simslim list --json | jq -r '.[].udid' | while read -r udid; do
55
+ echo "Optimizing simulator: $udid"
56
+ simslim on "$udid" || true
57
+ done
58
+
59
# Build iOS app (only if not cached)
60
- name: Build iOS app for simulator
61
if: steps.cache-ios-app.outputs.cache-hit != 'true'
0 commit comments