Sha256: 7ecdf64f97a011a7da375f4c0cd9261a9d4398fa6f30b8bd96b98d9bc96d4755

Contents?: true

Size: 1.54 KB

Versions: 4

Compression:

Stored size: 1.54 KB

Contents

version: 2.1

orbs:
  browser-tools: circleci/browser-tools@1.1

  # Always take the latest version of the orb, this allows us to
  # run specs against Solidus supported versions only without the need
  # to change this configuration every time a Solidus version is released
  # or goes EOL.
  solidusio_extensions: solidusio/extensions@volatile

jobs:
  run-specs-with-postgres:
    executor:
      name: solidusio_extensions/postgres
      ruby_version: '3.1'
    steps:
      - checkout
      - browser-tools/install-chrome
      - solidusio_extensions/run-tests

  run-specs-with-mysql:
    executor:
      name: solidusio_extensions/mysql
      ruby_version: '3.0'
    steps:
      - checkout
      - browser-tools/install-chrome
      - solidusio_extensions/run-tests

  run-specs-with-sqlite:
    executor:
      name: solidusio_extensions/sqlite
      ruby_version: '2.7'
    steps:
      - checkout
      - browser-tools/install-chrome
      - solidusio_extensions/run-tests

  lint-code:
    executor: solidusio_extensions/sqlite-memory
    steps:
      - solidusio_extensions/lint-code

workflows:
  "Run specs on supported Solidus versions":
    jobs:
      - run-specs-with-postgres
      - run-specs-with-mysql
      - run-specs-with-sqlite
      - lint-code

  "Weekly run specs against master":
    triggers:
      - schedule:
          cron: "0 0 * * 4" # every Thursday
          filters:
            branches:
              only:
                - master
    jobs:
      - run-specs-with-postgres
      - run-specs-with-mysql
      - run-specs-with-sqlite

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
solidus_paypal_commerce_platform-0.7.1 .circleci/config.yml
solidus_paypal_commerce_platform-0.7.0 .circleci/config.yml
solidus_paypal_commerce_platform-0.6.0 .circleci/config.yml
solidus_paypal_commerce_platform-0.5.0 .circleci/config.yml