Sha256: 6d1c3d178adcac1f62f882666f51a35ab3cbe648bea829354aa2dea970ccde2a

Contents?: true

Size: 1.65 KB

Versions: 1

Compression:

Stored size: 1.65 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-3:
    executor:
      name: solidusio_extensions/postgres
      ruby_version: "3.3"
    steps:
      - browser-tools/install-chrome
      - solidusio_extensions/run-tests
  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-3-1:
    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-3
      - run-specs-with-postgres-3-2
      - run-specs-with-postgres-3-1
      - 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-3
      - run-specs-with-postgres-3-2
      - run-specs-with-postgres-3-1
      - run-specs-with-mysql

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
solidus_prototypes-1.6.0 .circleci/config.yml