Sha256: 392e595995d0b1ffe3aa42fb264480f5b8f734e165fb6bdfb512ee40863c68f6

Contents?: true

Size: 1.21 KB

Versions: 18

Compression:

Stored size: 1.21 KB

Contents

version: 2
jobs:
  build:
    working_directory: ~/circleci-narou
    docker:
      - image: circleci/ruby:2.5
        environment:
          BUNDLE_JOBS: 1
          BUNDLE_RETRY: 3
          BUNDLE_PATH: vendor/bundle
    steps:
      - checkout

      - run:
          name: Which bundler?
          command: bundle -v

      # Restore bundle cache
      - restore_cache:
          keys:
            - narou-bundle-{{ checksum "Gemfile.lock" }}
            - narou-bundle-

      - run:
          name: Bundle Install
          command: bundle check || bundle install

      # Store bundle cache
      - save_cache:
          key: narou-bundle-{{ checksum "Gemfile.lock" }}
          paths:
            - vendor/bundle

      - run:
          name: Run rspec
          command: |
            bundle exec rspec \
              --format RspecJunitFormatter \
              --out test_results/rspec/results.xml \
              --format progress \
              $(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)

      # Save test results for timing analysis
      - store_test_results:
          path: test_results

      - store_artifacts:
          path: ./coverage
          destination: artifact-file

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
narou-3.5.1 .circleci/config.yml
narou-3.5.0.1 .circleci/config.yml
narou-3.5.0 .circleci/config.yml
narou-3.4.8 .circleci/config.yml
narou-3.4.7.1 .circleci/config.yml
narou-3.4.7 .circleci/config.yml
narou-3.4.6.1 .circleci/config.yml
narou-3.4.6 .circleci/config.yml
narou-3.4.5 .circleci/config.yml
narou-3.4.3 .circleci/config.yml
narou-3.4.2 .circleci/config.yml
narou-3.4.1 .circleci/config.yml
narou-3.4.0 .circleci/config.yml
narou-3.3.2 .circleci/config.yml
narou-3.3.1 .circleci/config.yml
narou-3.3.0 .circleci/config.yml
narou-3.2.5.1 .circleci/config.yml
narou-3.2.5 .circleci/config.yml