Lines Matching refs:build
3 description: Learn how to configure and install build for iOS simulators when using EAS Build.
9 Running a build of your app on an iOS Simulator is useful. You can configure the build profile and …
11 ## Configuring a profile to build for simulators
13 To install a build of your app on an iOS Simulator, modify the build profile in [**eas.json**](/bui…
17 "build": {
28 Now, execute the command as shown below to run the build:
30 <Terminal cmd={['$ eas build -p ios --profile preview']} />
34 ## Installing build on the simulator
38 Once your build is completed, the CLI will prompt you to automatically download and install it on t…
40 …ave multiple builds, you can also run the `eas build:run` command at any time to download a specif…
42 <Terminal cmd={['$ eas build:run -p ios']} />
44 …t the build to install on the simulator from this list. Each build in the list has a build ID, the…
49 alt="Running eas build:run command shows a list of available builds in a project."
50 src="/static/images/eas-build/eas-build-run-on-ios.png"
53 When the build's installation is complete, it will appear on the home screen. If it's a development…
55 ### Running the latest build
57 Pass the `--latest` flag to the `eas build:run` command to download and install the latest build on…
59 <Terminal cmd={['$ eas build:run -p ios --latest']} />