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.132.0.beta.20190915200038 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.132.0.beta.20190914200034 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.132.0.beta.20190913200058 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.132.0.beta.20190912200052 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.131.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.131.0.beta.20190911200010 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.131.0.beta.20190910200104 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.131.0.beta.20190909200058 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.131.0.beta.20190908200041 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.131.0.beta.20190907200030 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.131.0.beta.20190906200026 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.131.0.beta.20190905200113 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.131.0.beta.20190904200040 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.131.0.beta.20190903200013 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.131.0.beta.20190902200022 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.131.0.beta.20190901200035 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.131.0.beta.20190831200041 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.131.0.beta.20190830200038 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.130.0 fastlane/lib/fastlane/plugins/template/.circleci/config.yml
fastlane-2.130.0.beta.20190829200051 fastlane/lib/fastlane/plugins/template/.circleci/config.yml