Sha256: 964ffc268fcd273a4f23bf6a13b8fddc2e8e28f624f8e8ec6e2bb734e6790678

Contents?: true

Size: 939 Bytes

Versions: 2

Compression:

Stored size: 939 Bytes

Contents

version: 2.1

jobs:
  build:
    docker:
      - image: alexfalkowski/ruby:3.1
    steps:
      - checkout
      - restore_cache:
          keys:
            - nonnative-gem-cache-{{ checksum "Gemfile.lock" }}
            - nonnative-gem-cache-
      - run: make dep
      - save_cache:
          key: nonnative-gem-cache-{{ checksum "Gemfile.lock" }}
          paths:
            - vendor/bundle
      - run: make lint
      - run: make features
      - store_test_results:
          path: reports
      - store_artifacts:
          path: coverage
      - store_artifacts:
          path: features/logs
    resource_class: large
  release:
    docker:
      - image: alexfalkowski/release:2.0
    steps:
      - checkout
      - run: release

workflows:
  nonnative:
    jobs:
      - build
      - release:
          context: gh
          requires:
            - build
          filters:
            branches:
              only: master

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
nonnative-1.66.0 .circleci/config.yml
nonnative-1.65.0 .circleci/config.yml