Sha256: bbbae25d991982aedac97d5d145c9374b9b12f46c7d13c00eb9bdaa3d32e42dd

Contents?: true

Size: 1.38 KB

Versions: 4

Compression:

Stored size: 1.38 KB

Contents

version: 2.1

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

  # 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-3-2:
    executor:
      name: solidusio_extensions/postgres
      ruby_version: "3.2"
    steps:
      - browser-tools/install-chrome
      - solidusio_extensions/run-tests
  run-specs-with-postgres:
    executor:
      name: solidusio_extensions/postgres
      ruby_version: "3.1"
    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

workflows:
  "Run specs on supported Solidus versions":
    jobs:
      - run-specs-with-postgres-3-2
      - run-specs-with-postgres
      - run-specs-with-mysql
  "Weekly run specs against master":
    triggers:
      - schedule:
          cron: "0 0 * * 4" # every Thursday
          filters:
            branches:
              only:
                - master
    jobs:
      - run-specs-with-postgres-3-2
      - run-specs-with-postgres
      - run-specs-with-mysql

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
solidus_prototypes-1.5.1 .circleci/config.yml
solidus_prototypes-1.5.0 .circleci/config.yml
solidus_prototypes-1.4.0 .circleci/config.yml
solidus_prototypes-1.3.0 .circleci/config.yml