Sha256: 50e4932fbdafbc1848d55fba8fb08002e7f1a80db9685ad5d1146ab9fed0720d

Contents?: true

Size: 916 Bytes

Versions: 12

Compression:

Stored size: 916 Bytes

Contents

version: 2.1

jobs:
  build:
    docker:
      - image: alexfalkowski/ruby:2.7
    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 features
      - store_test_results:
          path: reports
      - run: make lint
      - store_artifacts:
          path: coverage
      - store_artifacts:
          path: features/logs
  release:
    docker:
      - image: alexfalkowski/release:2.0
    steps:
      - checkout
      - run: release.sh

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

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
nonnative-1.47.0 .circleci/config.yml
nonnative-1.46.0 .circleci/config.yml
nonnative-1.45.0 .circleci/config.yml
nonnative-1.44.0 .circleci/config.yml
nonnative-1.43.0 .circleci/config.yml
nonnative-1.42.0 .circleci/config.yml
nonnative-1.41.0 .circleci/config.yml
nonnative-1.40.0 .circleci/config.yml
nonnative-1.39.0 .circleci/config.yml
nonnative-1.38.0 .circleci/config.yml
nonnative-1.37.0 .circleci/config.yml
nonnative-1.36.0 .circleci/config.yml