Skip to content

Commit 365d63a

Browse files
authored
Merge pull request #4923 from nebulab/kennyadsl/sandbox-with-js
Fix CI installation tests reflecting latest changes to starter frontend
2 parents 4718a33 + 033bad1 commit 365d63a

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -169,16 +169,16 @@ commands:
169169
cat /tmp/.tool-versions
170170
- restore_cache:
171171
keys:
172-
- solidus-installer-v6-{{ checksum "/tmp/.tool-versions" }}
173-
- solidus-installer-v6-
172+
- solidus-installer-v7-{{ checksum "/tmp/.tool-versions" }}
173+
- solidus-installer-v7-
174174
- run:
175175
name: "Prepare the rails application"
176176
command: |
177177
cd /tmp
178178
test -d my_app || gem install rails solidus
179-
test -d my_app || rails new my_app --skip-javascript --skip-git
179+
test -d my_app || rails new my_app --skip-git
180180
- save_cache:
181-
key: solidus-installer-v5-{{ checksum "/tmp/.tool-versions" }}
181+
key: solidus-installer-v7-{{ checksum "/tmp/.tool-versions" }}
182182
paths:
183183
- /tmp/my_app
184184
- /home/circleci/.rubygems

bin/sandbox

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ unbundled bundle exec rails new sandbox --database="$RAILSDB" \
4747
--skip-keeps \
4848
--skip-rc \
4949
--skip-spring \
50-
--skip-test \
51-
--skip-javascript
50+
--skip-test
5251

5352
if [ ! -d "sandbox" ]; then
5453
echo 'sandbox rails application failed'

0 commit comments

Comments
 (0)