Continuous Integration
for iOS Apps

Wednesday, October 16, 13
Agenda
• Overview
• Setting up Ruby for an application
• Setup up Cocoapods
• Raking the setup, build and testing tasks
• Setting up the Jenkins jobs
• Sit Back and let it build

Wednesday, October 16, 13
What is Continuous
Integration

• Process in which code is constantly compiled
with tests run against the app

Wednesday, October 16, 13
Adding Ruby to your
Application
• Mac has ruby installed by default
• Add a couple of gems:
•$ sudo gem install rake
$ sudo gem install bundler

Wednesday, October 16, 13
Bundle Init
# A sample Gemfile
source "https://rubygems.org"
# gem "rails"
gem "cocoapods", "~> 0.25.0"
gem "frank-cucumber", "~> 1.2.0"

Wednesday, October 16, 13
CocoaPods Init
# Uncomment this line to define a global platform for your project
# platform :ios, "6.0"
pod 'AFNetworking', '~> 1.3.2'
pod 'TestFlightSDK', '~> 2.0'
pod 'Reachability', '~> 3.1.1'
pod 'Pixate', '~> 2.0.0RC2'
target :test do
!
link_with "WorkoutPokerTests"
!
#pod 'Kiwi', '~> 2.2.1'
!
pod 'OCMock', '~> 2.2.1'
end

Wednesday, October 16, 13
Workspace scheme
export

Wednesday, October 16, 13
Rake Setup

task :setup do
system 'bundle install'
system 'pod install'
end

Wednesday, October 16, 13
Rake Build

task :build do
system 'xcodebuild -workspace WorkoutPoker.xcworkspace
-scheme WorkoutPoker build'
end

Wednesday, October 16, 13
Rake Test

task :test do
system 'xcodebuild -workspace WorkoutPoker.xcworkspace -scheme
WorkoutPoker -sdk iphonesimulator7.0 build test'
end

Wednesday, October 16, 13
Rake frank
task :frank do'
result = system 'frank build --workspace WorkoutPoker.xcworkspace -scheme WorkoutPoker'
if result
#system 'frank launch'
Dir.chdir('Frank') do
system 'cucumber'
end
end
end

Wednesday, October 16, 13
Get Started with
Jenkins
• Download Jenkins
• Run java -jar jenkins.war
• Open browser and go to localhost:8080

Wednesday, October 16, 13
Jenkins Plugins
• Jenkins GIT Plugin
• Keychains and Provisioning Profiles
Management
• Testflight Plugin
• Xcode plugin
• Rake Plugin

Wednesday, October 16, 13
Building a Job

Wednesday, October 16, 13
Setting up SCM

Wednesday, October 16, 13
Setting Up Triggers

Wednesday, October 16, 13
Setting up Build
Environment

Wednesday, October 16, 13
XCode build plugin 1

Wednesday, October 16, 13
XCode Build Plugin 2

Wednesday, October 16, 13
Shell Build

Wednesday, October 16, 13
Kick off Another Project

Wednesday, October 16, 13
Push Git Tag

Wednesday, October 16, 13
Upload to TestFlight

Wednesday, October 16, 13
Resources
• www.cocoapods.org
• www.jenkins-ci.org
• www.testflightapp.com

Wednesday, October 16, 13
About Me
• Twitter: @cajun_code
• email:
cajun.code@gmail.com

Wednesday, October 16, 13

More Related Content

PPTX
Deploy a compute instance with a remote startup script
PPTX
Google cloud essential skills challenge lab
PDF
Helpful pre commit hooks for Python and Django
ODP
Elastic search
PPTX
#vBrownBag OpenStack - Review & Kickoff for Phase 2
PDF
Modern Infrastructure from Scratch with Puppet
PPTX
Autotesting rails app
PPT
Open Source Saturday - How can I contribute to Ruby on Rails?
Deploy a compute instance with a remote startup script
Google cloud essential skills challenge lab
Helpful pre commit hooks for Python and Django
Elastic search
#vBrownBag OpenStack - Review & Kickoff for Phase 2
Modern Infrastructure from Scratch with Puppet
Autotesting rails app
Open Source Saturday - How can I contribute to Ruby on Rails?

What's hot (20)

PDF
Puppet Camp Paris 2015: Continuous Integration of Puppet Code (Intermediate)
PDF
How to contribute Apache CloudStack
DOCX
DockerCoreNet
PDF
Rails Plugins 2 Hoe
PDF
Setup Kubernetes with flannel on ubuntu platform
PPTX
Magento & Cloud - Korostelov Avexey
PDF
node.js app deploy to heroku PaaS
PDF
Vagrant for Virtualized Development
PPTX
nginx + uwsgi emperor + bottle
PPTX
Gestión de la configuración - Jenkins ci
PDF
Deploying Drupal using Capistrano
PPTX
Using vagrant
PDF
Extending Foreman the easy way with foreman_hooks
PPTX
Simple webapps with nginx, uwsgi emperor and bottle
PDF
Sw install with_without_docker
PDF
Vagrant presentation
PDF
Create your-own-gem-with-github-jeweler-rubygems
PPTX
PPTX
Vagrant hands on workshop for beginners
PPTX
Deployment with capistrano
Puppet Camp Paris 2015: Continuous Integration of Puppet Code (Intermediate)
How to contribute Apache CloudStack
DockerCoreNet
Rails Plugins 2 Hoe
Setup Kubernetes with flannel on ubuntu platform
Magento & Cloud - Korostelov Avexey
node.js app deploy to heroku PaaS
Vagrant for Virtualized Development
nginx + uwsgi emperor + bottle
Gestión de la configuración - Jenkins ci
Deploying Drupal using Capistrano
Using vagrant
Extending Foreman the easy way with foreman_hooks
Simple webapps with nginx, uwsgi emperor and bottle
Sw install with_without_docker
Vagrant presentation
Create your-own-gem-with-github-jeweler-rubygems
Vagrant hands on workshop for beginners
Deployment with capistrano
Ad

Viewers also liked (6)

PPT
Continuous Integration
PPTX
Continuos integration with Jenkins for iOS | SuperSpeakers@CodeCamp Iasi, 2014
PPT
Dockerising Appium : London Appium Meetup
PDF
第8回大阪Jenkins勉強会LT: iOS vs CI
PPT
Continuos integration for iOS projects
Continuous Integration
Continuos integration with Jenkins for iOS | SuperSpeakers@CodeCamp Iasi, 2014
Dockerising Appium : London Appium Meetup
第8回大阪Jenkins勉強会LT: iOS vs CI
Continuos integration for iOS projects
Ad

Similar to Continuous Integration for IOS Apps (20)

PDF
Jazoon12 355 aleksandra_gavrilovska-1
PDF
Intro to Continuous Integration at SoundCloud
PPTX
Continuous integration by Rémy Virin
PDF
Continuous Integration for iOS
PDF
Continuous Integration for iOS (iOS User Group Berlin)
PDF
Ci for i-os-codemash-01.2013
PDF
Ruby meetup 7_years_in_testing
PPTX
Automated Testing and Continuous Deployment for Mobile Apps with Jenkins
PDF
Continuous Cross Platform Mobile App Development using Jenkins Build Server
PPTX
Jenkins CI/CD setup for iOS in Mac OSX
PPT
Continuous integration
PDF
Setup Build & Deploy with Jenkins CI
PDF
MacRuby & RubyMotion - Madridrb May 2012
PDF
Jenkins CI for MacDevOps
PDF
Graduating to Jenkins CI for Ruby(-on-Rails) Teams
PPTX
CocoaPods.pptx
PDF
Using Cocoapods
PDF
RailsConf 2013: RubyMotion
PPTX
#ATAGTR2019 Presentation "iOS App Automation, GitHub and Jenkins integration"...
PDF
Dominik Veselý - Vše co jste kdy chtěli vědět o CI a báli jste se zeptat
Jazoon12 355 aleksandra_gavrilovska-1
Intro to Continuous Integration at SoundCloud
Continuous integration by Rémy Virin
Continuous Integration for iOS
Continuous Integration for iOS (iOS User Group Berlin)
Ci for i-os-codemash-01.2013
Ruby meetup 7_years_in_testing
Automated Testing and Continuous Deployment for Mobile Apps with Jenkins
Continuous Cross Platform Mobile App Development using Jenkins Build Server
Jenkins CI/CD setup for iOS in Mac OSX
Continuous integration
Setup Build & Deploy with Jenkins CI
MacRuby & RubyMotion - Madridrb May 2012
Jenkins CI for MacDevOps
Graduating to Jenkins CI for Ruby(-on-Rails) Teams
CocoaPods.pptx
Using Cocoapods
RailsConf 2013: RubyMotion
#ATAGTR2019 Presentation "iOS App Automation, GitHub and Jenkins integration"...
Dominik Veselý - Vše co jste kdy chtěli vědět o CI a báli jste se zeptat

More from Allan Davis (11)

PPTX
Flutter game development
PPTX
Vr unity cardboard
PDF
Cross Platform Mobile Game Development
ODP
Mobilecity:Android Introduction
ODP
MobileCity:Core Data
ODP
MobileCity: UI UX Design
ODP
Coocoo for Cocoapods
ODP
MobileCity: Overview of ObjectiveC
ODP
MobileCity:Introduction to IOS
PDF
Generators
ODP
Django agenda
Flutter game development
Vr unity cardboard
Cross Platform Mobile Game Development
Mobilecity:Android Introduction
MobileCity:Core Data
MobileCity: UI UX Design
Coocoo for Cocoapods
MobileCity: Overview of ObjectiveC
MobileCity:Introduction to IOS
Generators
Django agenda

Recently uploaded (20)

PDF
A novel scalable deep ensemble learning framework for big data classification...
PDF
TrustArc Webinar - Click, Consent, Trust: Winning the Privacy Game
PDF
1 - Historical Antecedents, Social Consideration.pdf
PDF
Architecture types and enterprise applications.pdf
PDF
sustainability-14-14877-v2.pddhzftheheeeee
PDF
STKI Israel Market Study 2025 version august
PPTX
Final SEM Unit 1 for mit wpu at pune .pptx
PPTX
Group 1 Presentation -Planning and Decision Making .pptx
PDF
CloudStack 4.21: First Look Webinar slides
DOCX
search engine optimization ppt fir known well about this
PPTX
Benefits of Physical activity for teenagers.pptx
PPTX
MicrosoftCybserSecurityReferenceArchitecture-April-2025.pptx
PPT
What is a Computer? Input Devices /output devices
PDF
Getting started with AI Agents and Multi-Agent Systems
PDF
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
PPTX
observCloud-Native Containerability and monitoring.pptx
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
PPTX
O2C Customer Invoices to Receipt V15A.pptx
PPTX
The various Industrial Revolutions .pptx
A novel scalable deep ensemble learning framework for big data classification...
TrustArc Webinar - Click, Consent, Trust: Winning the Privacy Game
1 - Historical Antecedents, Social Consideration.pdf
Architecture types and enterprise applications.pdf
sustainability-14-14877-v2.pddhzftheheeeee
STKI Israel Market Study 2025 version august
Final SEM Unit 1 for mit wpu at pune .pptx
Group 1 Presentation -Planning and Decision Making .pptx
CloudStack 4.21: First Look Webinar slides
search engine optimization ppt fir known well about this
Benefits of Physical activity for teenagers.pptx
MicrosoftCybserSecurityReferenceArchitecture-April-2025.pptx
What is a Computer? Input Devices /output devices
Getting started with AI Agents and Multi-Agent Systems
How ambidextrous entrepreneurial leaders react to the artificial intelligence...
observCloud-Native Containerability and monitoring.pptx
Assigned Numbers - 2025 - Bluetooth® Document
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
O2C Customer Invoices to Receipt V15A.pptx
The various Industrial Revolutions .pptx

Continuous Integration for IOS Apps