Reputation: 11
I am going to use fastlane for continuous integration for our iOS project (Xcode). We want to build the app from different branches of our git remote repository. How can I specify the branch name for build the app?
Upvotes: 1
Views: 1866
Reputation: 1460
Another solution would be to add the integration to the CI of the correct repositories, and add CI rules (in your CI config file) to determine what it should run depending on the branch you're in.
Upvotes: 0
Reputation: 11751
This depends on your CI system, as you usually don't want to switch branches yourselves after the CI system checked out the source code.
Upvotes: 2