Sha256: e79bb2791848be2d3d39a3e6a4919cb53238583484f35ee8741d1e28db1da421

Contents?: true

Size: 620 Bytes

Versions: 6

Compression:

Stored size: 620 Bytes

Contents

version: 2
jobs:
  build:
    docker:
      - image: circleci/ruby:2.6
        environment:
          BUNDLE_JOBS: "3"
          BUNDLE_PATH: vendor/bundle
          BUNDLE_RETRY: "3"
    steps:
      - checkout
      - restore_cache:
          keys:
            - nonnative-gem-cache-{{ checksum "Gemfile.lock" }}
            - nonnative-gem-cache-
      - run: make dependencies
      - save_cache:
          key: nonnative-gem-cache-{{ checksum "Gemfile.lock" }}
          paths:
            - vendor/bundle
      - run: make features
      - run: make analysis
      - store_artifacts:
          path: features/logs

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
nonnative-1.8.0 .circleci/config.yml
nonnative-1.7.0 .circleci/config.yml
nonnative-1.6.0 .circleci/config.yml
nonnative-1.5.0 .circleci/config.yml
nonnative-1.4.0 .circleci/config.yml
nonnative-1.3.0 .circleci/config.yml