Created
January 6, 2017 11:51
-
-
Save wtrocki/5dcf5908a0a55aa81f43dd98fb1b00ae to your computer and use it in GitHub Desktop.
Fastline IOS build
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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