There are some predefined actions you can use. If you have ideas for more, please let me know.
Everyone using CocoaPods will probably want to run a pod install
before running tests and building the app.
cocoapods # this will run pod install
You can run any xctool action. This will require having xctool installed through homebrew.
xctool :test
It is recommended to have the xctool
configuration stored in a xctool-args
file.
snapshot
To make snapshot
work without user interaction, follow the CI-Guide of snapshot
.
To skip cleaning the project on every build:
snapshot :noclean
To show the output of UIAutomation
:
snapshot :verbose
This will generate and download your App Store provisioning profile. sigh
will store the generated profile in the ./fastlane
folder.
sigh
You can pass all options listed in sigh --help
in fastlane
:
sigh({
adhoc: true,
force: true,
filename: "myFile.mobileprovision"
})
The cert
action can be used to make sure to have the latest signing certificate installed. More information on the cert
project page.
cert
fastlane
will automatically pass the signing certificate to use to sigh
.
You can pass all options listed in sigh --help
in fastlane
:
cert({
development: true,
username: "[email protected]"
})
Create new apps on iTunes Connect and Apple Developer Portal. If the app already exists, produce
will not do anything.
produce({
produce_username: '[email protected]',
produce_app_identifier: 'com.krausefx.app',
produce_app_name: 'MyApp',
produce_language: 'English',
produce_version: '1.0',
produce_sku: 123,
produce_team_name: 'SunApps GmbH' # only necessary when in multiple teams
})
Build your app right inside fastlane
and the path to the resulting ipa is automatically available to all other actions.
ipa({
workspace: "MyApp.xcworkspace",
configuration: "Debug",
scheme: "MyApp",
})
The ipa
action uses shenzhen under the hood.
The path to the ipa
is automatically used by Crashlytics
, Hockey
and DeployGate
. To also use it in deliver
update your Deliverfile
:
ipa ENV["IPA_OUTPUT_PATH"]
beta_ipa ENV["IPA_OUTPUT_PATH"]
deliver
To upload a new build to TestFlight use deliver :beta
.
If you don't want a PDF report for App Store builds, append :force
to the command. This is useful when running fastlane
on your Continuous Integration server: deliver :force
Other options
deliver :skip_deploy
: To don't submit the app for review (works with both App Store and beta builds)deliver :force, :skip_deploy
: Combine options using,
By default, the device color will be black
frameit
To use white (sorry, silver) device frames
frameit :silver
This method will increment the build number, not the app version. Usually this is just an auto incremented number. You first have to set up your Xcode project, if you haven't done it already.
increment_build_number # automatically increment by one
increment_build_number '75' # set a specific number
This will resign an ipa with another signing identity and provisioning profile.
If you have used the ipa
and sigh
actions, then this action automatically gets the ipa
and provisioning_profile
values respectively from those actions and you don't need to manually set them (althout you can always override them).
resign(
ipa: 'path/to/ipa', # can omit if using the `ipa` action
signing_identity: 'iPhone Distribution: Luka Mirosevic (0123456789)',
provisioning_profile: 'path/to/profile', # can omit if using the `sigh` action
)
This action deletes the files that get created in your repo as a result of running the ipa
and sigh
commands. It doesn't delete the fastlane/report.xml
though, this is probably more suited for the .gitignore.
Useful if you quickly want to send out a test build by dropping down to the command line and typing something like fastlane beta
, without leaving your repo in a messy state afterwards.
clean_build_artifacts
A sanity check to make sure you are working in a repo that is clean. Especially useful to put at the beginning of your fastfile in the before_all
block, if some of your other actions will touch your filesystem, do things to your git repo, or just as a general reminder to save your work. Also needed as a prerequisite for some other actions like reset_git_repo
.
ensure_git_status_clean
This action will create a "Version Bump" commit in your repo. Useful in conjunction with increment_build_number
.
It checks the repo to make sure that only the relevant files have changed, these are the files that increment_build_number
(agvtool
) touches:
- All .plist files
- The
.xcodeproj/project.pbxproj
file
Then commits those files to the repo.
Customise the message with the :message
option, defaults to "Version Bump"
If you have other uncommitted changes in your repo, this action will fail. If you started off in a clean repo, and used the ipa
and or sigh
actions, then you can use the clean_build_artifacts
action to clean those temporary files up before running this action.
commit_version_bump
commit_version_bump(
message: 'Version Bump', # create a commit with a custom message
)
This will automatically tag your build with the following format: <grouping>/<lane>/<prefix><build_number>
, where:
grouping
is just to keep your tags organised under one "folder", defaults to 'builds'lane
is the name of the current fastlane laneprefix
is anything you want to stick in front of the version number, e.g. "v"build_number
is the build number, which defaults to the value emitted by theincrement_build_number
action
For example for build 1234 in the "appstore" lane it will tag the commit with builds/appstore/1234
add_git_tag # simple tag with default values
add_git_tag(
grouping: 'fastlane-builds',
prefix: 'v',
build_number: 123
)
This action will reset your git repo to a clean state, discarding any uncommitted and untracked changes. Useful in case you need to revert the repo back to a clean state, e.g. after the fastlane run.
It's a pretty drastic action so it comes with a sort of safety latch. It will only proceed with the reset if either of these conditions are met:
- You have called the
ensure_git_status_clean
action prior to calling this action. This ensures that your repo started off in a clean state, so the only things that will get destroyed by this action are files that are created as a byproduct of the fastlane run. - You call it with the
:force
option, in which case "you have been warned".
Also useful for putting in your error
block, to bring things back to a pristine state (again with the caveat that you have called ensure_git_status_clean
before)
reset_git_repo
reset_git_repo :force # if you don't care about warnings and are absolutely sure that you want to discard all changes. This will reset the repo even if you have valuable uncommitted changes, so use with care!
hockey({
api_token: '...',
ipa: './app.ipa',
notes: "Changelog"
})
Symbols will also be uploaded automatically if a app.dSYM.zip
file is found next to app.ipa
. In case it is located in a different place you can specify the path explicitly in :dsym
parameter.
More information about the available options can be found in the HockeyApp Docs.
crashlytics({
crashlytics_path: './Crashlytics.framework', # path to your 'Crashlytics.framework'
api_token: '...',
build_secret: '...',
ipa_path: './app.ipa'
})
Additionally you can specify notes_path
, emails
, groups
and notifications
.
Add the s3
action after the ipa
step:
s3
You can also customize a lot of options:
s3({
# All of these are used to make Shenzhen's `ipa distribute:s3` command
access_key: ENV['S3_ACCESS_KEY'], # Required from user
secret_access_key: ENV['S3_SECRET_ACCESS_KEY'], # Required from user
bucket: ENV['S3_BUCKET'], # Required from user
file: 'AppName.ipa', # This would come from IpaAction
dsym: 'AppName.app.dSYM.zip', # This would come from IpaAction
path: 'v{CFBundleShortVersionString}_b{CFBundleVersion}/' # This is actually the default
})
It is recommended to not store the AWS access keys in the Fastfile
.
You can retrieve your username and API token on your settings page.
deploygate({
api_token: '...',
user: 'target username or organization name',
ipa: './ipa_file.ipa',
message: "Build #{Actions.lane_context[Actions::SharedValues::BUILD_NUMBER]}",
})
If you put deploygate
after ipa
action, you don't have to specify IPA file path, as it is extracted from the lane context automatically.
More information about the available options can be found in the DeployGate Push API document.
Send a message to #channel (by default) or a direct message to @username with success (green) or failure (red) status.
slack({
message: "App successfully released!",
channel: "#channel",
success: true
})
Send a message to room (by default) or a direct message to @username with success (green) or failure (red) status.
ENV["HIPCHAT_API_TOKEN"] = "Your API token"
ENV["HIPCHAT_API_VERSION"] = "1 for API version 1 or 2 for API version 2"
hipchat({
message: "App successfully released!",
channel: "Room or @username",
success: true
})
Send a message to topic with success (:smile:) or failure (:rage:) status. Using Bot's Typetalk Token
typetalk({
message: "App successfully released!",
note_path: 'ChangeLog.md',
topicId: 1,
success: true,
typetalk_token: 'Your Typetalk Token'
})
Run your functional tests on real iOS devices over the cloud (for free on an iPod). With this simple testcase you can ensure your app launches and there is no crash at launch. Tests can be extended with Testmunk's library or custom steps. More details about this action can be found in testmunk.rb
.
ENV['TESTMUNK_EMAIL'] = '[email protected]'
# Additionally, you have to set TESTMUNK_API, TESTMUNK_APP and TESTMUNK_IPA
testmunk
Generate summarized code coverage reports.
gcovr({
html: true,
html_details: true,
output: "./code-coverage/report.html"
})
Use this command if you are supporting multiple versions of Xcode
xcode_select "/Applications/Xcode6.1.app"
sh "./your_bash_script.sh"
To set a team ID for sigh
, PEM
and the other tools, add this code to your before_all
block:
team_id "Q2CBPK58CA"
# or
team_name "Felix Krause"
Alternatively you can add this information to your fastlane/Appfile
.