Best practice for setting up an automated build server for iphone apps?

前端 未结 3 999
我寻月下人不归
我寻月下人不归 2021-01-29 23:14

I\'m looking to setup an automated nightly build server for our iphone apps, and looking for advice on what works and what doesn\'t.

Basically, something that at least n

3条回答
  •  感情败类
    2021-01-29 23:34

    One new option is Xcode 5 combined with Mac OS X 10.9 (Mavericks) and OS X Server. OS X Server now has an Xcode server component which is good for running automated tests.

    It can do:

    1. Build (+check for warnings)
    2. Analyze (ie. clang static analysis)
    3. Run tests on iOS simulator + all connected devices connected to it with USB

    For running tests on devices, it beats jenkins/hudson for simplicity and ease of setup by a huge margin. However the Xcode server (as of Xcode 5.1) is completely uncustomisable - if you want to add custom graphing of performance/memory usage/whatever, you can't - for that kind of power, jenkins/Hudson are far better.

提交回复
热议问题