Skip to content

Commit

Permalink
Update CircleCI config to Latest
Browse files Browse the repository at this point in the history
  • Loading branch information
cpfergus1 committed May 5, 2023
1 parent 06a0dba commit 154c901
Showing 1 changed file with 7 additions and 15 deletions.
22 changes: 7 additions & 15 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,24 @@
version: 2.1

orbs:
# Required for feature specs.
browser-tools: circleci/[email protected]

# Always take the latest version of the orb, this allows us to
# 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: solidusio_extensions/sqlite
steps:
- browser-tools/install-chrome
- solidusio_extensions/run-tests
run-specs-with-postgres:
executor: solidusio_extensions/postgres
steps:
- browser-tools/install-chrome
- solidusio_extensions/run-tests
run-specs-with-mysql:
executor: solidusio_extensions/mysql
steps:
- browser-tools/install-chrome
- solidusio_extensions/run-tests
run-specs-with-sqlite:
executor: solidusio_extensions/sqlite
steps:
- solidusio_extensions/run-tests
lint-code:
executor: solidusio_extensions/sqlite-memory
Expand All @@ -34,9 +28,9 @@ jobs:
workflows:
"Run specs on supported Solidus versions":
jobs:
- run-specs-with-sqlite
- run-specs-with-postgres
- run-specs-with-mysql
- run-specs-with-sqlite
- lint-code

"Weekly run specs against master":
Expand All @@ -48,6 +42,4 @@ workflows:
only:
- master
jobs:
- run-specs-with-sqlite
- run-specs-with-postgres
- run-specs-with-mysql
- run-specs-with-sqlite

0 comments on commit 154c901

Please sign in to comment.