File tree 3 files changed +14
-5
lines changed
3 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 1
1
version : 2.1
2
2
3
3
orbs :
4
+ browser-tools :
circleci/[email protected]
5
+
4
6
# Always take the latest version of the orb, this allows us to
5
7
# run specs against Solidus supported versions only without the need
6
8
# to change this configuration every time a Solidus version is released
@@ -11,10 +13,12 @@ jobs:
11
13
run-specs-with-postgres :
12
14
executor : solidusio_extensions/postgres
13
15
steps :
16
+ - browser-tools/install-browser-tools
14
17
- solidusio_extensions/run-tests
15
18
run-specs-with-mysql :
16
19
executor : solidusio_extensions/mysql
17
20
steps :
21
+ - browser-tools/install-browser-tools
18
22
- solidusio_extensions/run-tests
19
23
20
24
workflows :
Original file line number Diff line number Diff line change 7
7
.project
8
8
.sass-cache
9
9
coverage
10
+ Gemfile-local
10
11
Gemfile.lock
11
12
tmp
12
13
nbproject
Original file line number Diff line number Diff line change @@ -4,12 +4,16 @@ source 'https://rubygems.org'
4
4
git_source ( :github ) { |repo | "https://github.com/#{ repo } .git" }
5
5
6
6
branch = ENV . fetch ( 'SOLIDUS_BRANCH' , 'master' )
7
- gem 'solidus' , github : 'solidusio/solidus' , branch : branch
8
7
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 )
13
17
14
18
case ENV [ 'DB' ]
15
19
when 'mysql'
You can’t perform that action at this time.
0 commit comments