Skip to content

Commit

Permalink
Merge pull request #85 from solidusio/waiting-for-dev/fix_ci
Browse files Browse the repository at this point in the history
Fix CI by explicitly passing ruby version
  • Loading branch information
waiting-for-dev authored May 3, 2023
2 parents 7165ae6 + 927dd35 commit 8790176
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .circleci/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,36 @@ filters: &filters

jobs:
test-run-with-postgres:
executor: extensions/postgres
executor:
name: extensions/postgres
ruby_version: "3.0"
steps:
- checkout
- extensions/run-tests-solidus-older:
working_directory: '~/project/solidus_dummy_extension'
- extensions/store-test-results
test-run-with-mysql:
executor: extensions/mysql
executor:
name: extensions/mysql
ruby_version: "3.1"
steps:
- checkout
- extensions/run-tests-solidus-current:
working_directory: '~/project/solidus_dummy_extension'
- extensions/store-test-results
test-run-with-sqlite:
executor: extensions/sqlite
executor:
name: extensions/sqlite
ruby_version: "3.2"
steps:
- checkout
- extensions/run-tests-solidus-master:
working_directory: '~/project/solidus_dummy_extension'
- extensions/store-test-results
test-run-linting-code:
executor: extensions/sqlite-memory
executor:
name: extensions/sqlite-memory
ruby_version: "3.2"
steps:
- extensions/lint-code:
working_directory: '~/project/solidus_dummy_extension'
Expand Down
3 changes: 3 additions & 0 deletions solidus_dummy_extension/.rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ require:

AllCops:
NewCops: disable

Gemspec/RequiredRubyVersion:
Enabled: false

0 comments on commit 8790176

Please sign in to comment.