Guest User

Untitled

a guest
Aug 26th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. machine:
  2. timezone: Asia/Tokyo
  3. xcode:
  4. version: 7.3
  5. environment:
  6. XCODE_SCHEME: ***
  7. XCODE_WORKSPACE: ***.xcworkspace
  8. GYM_CODE_SIGNING_IDENTITY: 'iPhone Distribution: ***. (***)'
  9. dependencies:
  10. cache_directories:
  11. - 'vendor/bundle'
  12. - 'Pods'
  13. - '~/.cocoapods'
  14. override:
  15. - bundle install -j4 --path=vendor/bundle
  16. - pod install:
  17. timeout: 300
  18. deployment:
  19. release:
  20. branch: release
  21. commands:
  22. - bundle exec fastlane ios deploy
  23. test:
  24. override:
  25. - set -o pipefail &&
  26. xcodebuild
  27. CODE_SIGNING_REQUIRED=NO
  28. CODE_SIGN_IDENTITY=
  29. PROVISIONING_PROFILE=
  30. -sdk iphonesimulator
  31. -destination 'platform=iOS Simulator,OS=9.0,name=iPhone 6'
  32. -workspace ***.xcworkspace
  33. -scheme "***"
  34. clean build test |
  35. tee $CIRCLE_ARTIFACTS/xcode_raw.log |
  36. xcpretty --color --report junit --output $CIRCLE_TEST_REPORTS/xcode/results.xml
Add Comment
Please, Sign In to add comment