DEV Community

Discussion on: Continuous Integration and Deployment of an iOS app with Bitrise

Collapse
 
jorgemasta profile image
Jorge Masta

Thanks for sharing!

I have seen that you have 2 workflows:

  • production (push to master) where you generate a build
  • development (PR to master/development) with only tests

Have you considered the option of creating a test build in the development workflow? To be able to do QA (in app) of each release/feature

Collapse
 
jfsagasti profile image
Juan Sagasti

That's a great approach! We have used it in the past with other clients as well (with BuddyBuild tho).

We are bootstrapping a very simple app and we found that just doing the QA phase with the TestFlight build fills our current needs. But if this grows a bit more in features and QA resources, for sure :)

Thank you for pointing it out!