-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
tarappo
committed
Aug 24, 2017
1 parent
b8f0ca8
commit a5ca2f8
Showing
2 changed files
with
29 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
language: swift | ||
|
||
osx_image: xcode8.3 | ||
|
||
xcode_project: ci-sample.xcodeproj | ||
xcode_scheme: ci-sample | ||
|
||
before_install: | ||
- openssl aes-256-cbc -K $encrypted_448470aeb6e7_key -iv $encrypted_448470aeb6e7_iv -in ./travis/secrets.tar.enc -out ./travis/secrets.tar -d | ||
- tar xvf ./travis/secrets.tar -C ./travis | ||
- gem install xcpretty-travis-formatter --no-document | ||
- bundle install --path ./vendor/bundle | ||
|
||
before_script: | ||
- bundle exec fastlane setup_certificate | ||
- mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles | ||
- cp ./travis/*mobileprovision ~/Library/MobileDevice/Provisioning\ Profiles/ | ||
|
||
script: | ||
- bundle exec fastlane build | ||
|
||
after_success: | ||
|
||
after_script: | ||
- security delete-keychain ios-build.keychain | ||
- rm -f "~/Library/MobileDevice/Provisioning Profiles/" | ||
|
||
notifications: | ||
email: false |
This file was deleted.
Oops, something went wrong.