Skip to content

Commit 08464dc

Browse files
feat: add steps to install ios app on emulator
1 parent 7d21a27 commit 08464dc

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.circleci/config.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,18 @@ jobs:
209209
name: List available simulators
210210
command: xcrun simctl list
211211

212+
- run:
213+
name: Create and boot iPhone 15 simulator
214+
command: |
215+
echo "Creating iPhone 15 simulator with runtime $RUNTIME"
216+
xcrun simctl create "iPhone 15" com.apple.CoreSimulator.SimDeviceType.iPhone-15 $RUNTIME
217+
xcrun simctl boot "iPhone 15" || true
218+
219+
- run:
220+
name: Install app on simulator
221+
command: |
222+
xcrun simctl install booted ~/project/example/e2e/build/Build/Products/Release-iphonesimulator/IntercomReactNativeExampleUI.app
223+
212224
- run:
213225
working_directory: example/e2e
214226
name: Check Maestro version

0 commit comments

Comments
 (0)