Sha256: b8a35b27c64c338a0d05f316a080de0ab6d0fa0a856159c3e37f54ae3a8a0a4b

Contents?: true

Size: 1.55 KB

Versions: 2

Compression:

Stored size: 1.55 KB

Contents

version: 2.1

orbs:
  # Required for feature specs.
  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-sqlite:
    executor:
      name: solidusio_extensions/sqlite
      ruby_version: "3.0"
    steps:
      - browser-tools/install-chrome
      - solidusio_extensions/run-tests
  run-specs-with-postgres:
    executor:
      name: solidusio_extensions/postgres
      ruby_version: "3.0"
    steps:
      - browser-tools/install-chrome
      - solidusio_extensions/run-tests
  run-specs-with-mysql:
    executor:
      name: solidusio_extensions/mysql
      ruby_version: "3.0"
    steps:
      - browser-tools/install-chrome
      - solidusio_extensions/run-tests
  lint-code:
    executor:
      name: solidusio_extensions/sqlite-memory
      ruby_version: "3.0"
    steps:
      - solidusio_extensions/lint-code

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

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
solidus_reviews-1.7.0 .circleci/config.yml
solidus_reviews-1.6.0 .circleci/config.yml