File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11version : 2.1
22
33orbs :
4+ browser-tools : circleci/browser-tools@1.1
5+
46 # Always take the latest version of the orb, this allows us to
57 # run specs against Solidus supported versions only without the need
68 # to change this configuration every time a Solidus version is released
@@ -11,10 +13,12 @@ jobs:
1113 run-specs-with-postgres :
1214 executor : solidusio_extensions/postgres
1315 steps :
16+ - browser-tools/install-browser-tools
1417 - solidusio_extensions/run-tests
1518 run-specs-with-mysql :
1619 executor : solidusio_extensions/mysql
1720 steps :
21+ - browser-tools/install-browser-tools
1822 - solidusio_extensions/run-tests
1923
2024workflows :
Original file line number Diff line number Diff line change 77.project
88.sass-cache
99coverage
10+ Gemfile-local
1011Gemfile.lock
1112tmp
1213nbproject
Original file line number Diff line number Diff line change @@ -4,12 +4,16 @@ source 'https://rubygems.org'
44git_source ( :github ) { |repo | "https://github.com/#{ repo } .git" }
55
66branch = ENV . fetch ( 'SOLIDUS_BRANCH' , 'master' )
7- gem 'solidus' , github : 'solidusio/solidus' , branch : branch
87
9- # Needed to help Bundler figure out how to resolve dependencies,
10- # otherwise it takes forever to resolve them.
11- # See https://github.com/bundler/bundler/issues/6677
12- gem 'rails' , '>0.a'
8+ git "https://github.com/solidusio/solidus.git" , branch : branch do
9+ gem 'solidus_api'
10+ gem 'solidus_backend'
11+ gem 'solidus_core'
12+ gem 'solidus_frontend'
13+ gem 'solidus_sample'
14+ end
15+
16+ gem 'rails' , ENV . fetch ( 'RAILS_VERSION' , nil )
1317
1418case ENV [ 'DB' ]
1519when 'mysql'
You can’t perform that action at this time.
0 commit comments