amccarri
amccarri
I just finished setting up builds using Xcode bots this morning for our app which uses cocoa pods, however I will say that we are going to stick with Jenkins....
Not unique to bots, you can do this with jenkins or any other CI tool that can run a command line build. From the xcodebuild man page: xcodebuild -workspace MyWorkspace.xcworkspace...
@mtitolo sorry should have directed my comment, @qnoid was asking about bots' ability to run tests on multiple devices as an advantage over other solutions. I was just pointing out...
Oh btw, here's my build pre-action script for using cocoa pods with bots: ``` cd $SRCROOT if [ ! -e "$HOME/.cocoapods/repos/OurRepo" ] then pod repo add OurRepo git@ourgithub:OurApps/CocoaPodSpecs.git fi if...