I’m trying to test flutter app using Azure DevOps and Appium. My CI/CD pipeline contains 2 major jobs – build app & run tests. First job creates .app
file and passes it as an artifact to the second job. To achieve this I have to launch iOS simulator and build with flutter run
. Those actions take significant amount of time and I’m wondering is there a way to build iOS app without a need to create simulator.
I’ve tried flutter build ios --debug --no-codesign
but the resulting app is incompatible with the iOS simulator.
Serhii D is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.