Skip to content

Commit 0953d9a

Browse files
chore: add simslim to boost ios sim
1 parent 18adfcc commit 0953d9a

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/ios.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,15 @@ jobs:
4747
working-directory: example
4848
run: yarn pod
4949

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+
5059
# Build iOS app (only if not cached)
5160
- name: Build iOS app for simulator
5261
if: steps.cache-ios-app.outputs.cache-hit != 'true'

0 commit comments

Comments
 (0)