Sha256: e628338f9787d957e88b5fe864dd246fa27385f762929a2ec8aae042a7c23551

Contents?: true

Size: 1.04 KB

Versions: 711

Compression:

Stored size: 1.04 KB

Contents

# Ruby CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-ruby/ for more details
#
version: 2
jobs:
  build:
    docker:
      # specify the version you desire here
       - image: circleci/ruby:2.4.2

    working_directory: ~/repo

    steps:
      - checkout

      # Download and cache dependencies
      - restore_cache:
          keys:
          - v1-dependencies-{{ checksum "Gemfile" }}
          # fallback to using the latest cache if no exact match is found
          - v1-dependencies-

      - run:
          name: install dependencies
          command: bundle check || bundle install --jobs=4 --retry=3 --path vendor/bundle

      - save_cache:
          paths:
            - ./vendor
          key: v1-dependencies-{{ checksum "Gemfile" }}

      # run tests!
      - run:
          name: run tests
          command: bundle exec rake

      # collect reports
      - store_test_results:
          path: ~/repo/test-results
      - store_artifacts:
          path: ~/repo/test-results
          destination: test-results

Version data entries

711 entries across 711 versions & 4 rubygems

Version Path
fastlane-2.135.1 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.135.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.134.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.133.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.132.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.132.0.beta.20190930200026 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.132.0.beta.20190929200020 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.132.0.beta.20190928200106 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.132.0.beta.20190927200017 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.132.0.beta.20190926200023 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.132.0.beta.20190925200108 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.132.0.beta.20190924200030 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.132.0.beta.20190923200017 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.132.0.beta.20190922200014 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.132.0.beta.20190921200021 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.132.0.beta.20190920200012 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.132.0.beta.20190919200100 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.132.0.beta.20190918200023 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.132.0.beta.20190917200011 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.132.0.beta.20190916200055 fastlane/lib/fastlane/plugins/template/.circleci/config.yml