Sha256: 736820ca65d2bb98a77a44900e443a405a80755c2ee07645fc2e274fe3f9dbfa
Contents?: true
Size: 1.89 KB
Versions: 2
Compression:
Stored size: 1.89 KB
Contents
version: 2.1 orbs: # 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 commands: libvips: steps: - run: name: Install libvips command: "sudo apt-get update && sudo apt-get install -y libvips" jobs: run-specs: parameters: solidus: type: string default: main db: type: string default: "postgres" ruby: type: string default: "3.2" executor: name: solidusio_extensions/<< parameters.db >> ruby_version: << parameters.ruby >> steps: - checkout - libvips - solidusio_extensions/run-tests-solidus-<< parameters.solidus >> workflows: "Run specs on supported Solidus versions": jobs: - run-specs: name: &name "run-specs-solidus-<< matrix.solidus >>-ruby-<< matrix.ruby >>-db-<< matrix.db >>" matrix: parameters: { solidus: ["main"], ruby: ["3.2"], db: ["postgres"] } - run-specs: name: *name matrix: parameters: { solidus: ["current"], ruby: ["3.1"], db: ["mysql"] } - run-specs: name: *name matrix: parameters: { solidus: ["older"], ruby: ["3.0"], db: ["sqlite"] } "Weekly run specs against main": triggers: - schedule: cron: "0 0 * * 4" # every Thursday filters: branches: only: - main jobs: - run-specs: name: *name matrix: parameters: { solidus: ["main"], ruby: ["3.2"], db: ["postgres"] } - run-specs: name: *name matrix: parameters: { solidus: ["current"], ruby: ["3.1"], db: ["mysql"] }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
solidus_graphql_api-0.3.1 | .circleci/config.yml |
solidus_graphql_api-0.3.0 | .circleci/config.yml |