We are using the Git/Source Tree as our source repository.Now we want to setup the automated builds periodically. Which are the best ways of doing it?

有帮助吗?

解决方案

You'll want to use a continuous integration system, and there are many to choose from. Probably your top choices for iOS are:

  • Jenkins - free, a little complex to use
  • Travis-CI - free for open source projects, otherwise paid.
  • Xcode Bots - free, comes with Mac OS X Server (free for developers), built by Apple

You'll likely want to install one of these pieces of software on a dedicated server (although Travis is hosted for you, as far as I'm aware). They can all monitor your Git repository and perform a new build whenever you push a commit.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top