Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,18 @@ jobs:
working-directory: example
run: yarn pod

- name: "Optimize simulator with simslim"
run: |
brew install mobai-app/tap/simslim
# Only optimize the iPhone 17 used for testing (saves ~3-4 min vs optimizing all simulators)
UDID=$(simslim list --json | jq -r '.[] | select(.name == "iPhone 17") | .udid' | head -1)
if [ -n "$UDID" ]; then
echo "Optimizing iPhone 17 ($UDID)..."
simslim on "$UDID"
else
echo "::warning::iPhone 17 not found, skipping simslim optimization"
fi

# Build iOS app (only if not cached)
- name: Build iOS app for simulator
if: steps.cache-ios-app.outputs.cache-hit != 'true'
Expand Down
Loading