Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. version: 2
  2. jobs:
  3. build:
  4. macos:
  5. xcode: "9.0"
  6. working_directory: /Users/distiller/project
  7. environment:
  8. FL_OUTPUT_DIR: output
  9. FASTLANE_LANE: test
  10. shell: /bin/bash --login -o pipefail
  11. steps:
  12. - checkout
  13. - restore_cache:
  14. key: 1-gems-{{ checksum "Gemfile.lock" }}
  15. - run: bundle check || bundle install --path vendor/bundle
  16. - save_cache:
  17. key: 1-gems-{{ checksum "Gemfile.lock" }}
  18. paths:
  19. - vendor/bundle
  20. - run:
  21. name: fastlane
  22. command: bundle exec fastlane $FASTLANE_LANE
  23. - store_artifacts:
  24. path: output
  25. - store_test_results:
  26. path: output/scan
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement