Skip to content

Instantly share code, notes, and snippets.

@wtrocki
Created January 6, 2017 11:51
Show Gist options
  • Select an option

  • Save wtrocki/5dcf5908a0a55aa81f43dd98fb1b00ae to your computer and use it in GitHub Desktop.

Select an option

Save wtrocki/5dcf5908a0a55aa81f43dd98fb1b00ae to your computer and use it in GitHub Desktop.
Fastline IOS build
node('ios') {
stage 'Checkout'
dir('app') {
stage 'Check Gemfile'
sh "bundle install"
//stage 'Unit Test'
//sh "bundle exec fastlane test"
if (env.BUILD_TYPE == "release") {
stage 'Build'
sh "bundle exec fastlane production"
} else {
stage 'Build'
sh "bundle exec fastlane beta"
}
}
stage 'Clear Workspace'
deleteDir()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment