Skip to content

Commit

Permalink
TMP CI: Do not cache installer app
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdeyen committed Oct 18, 2024
1 parent 87a8811 commit f29b8eb
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,21 +161,21 @@ commands:
cat /tmp/.ruby-versions
cat /tmp/.gems-versions
- restore_cache:
keys:
- solidus-installer-v10-{{ checksum "/tmp/.ruby-versions" }}-{{ checksum "/tmp/.gems-versions" }}
- solidus-installer-v10-{{ checksum "/tmp/.ruby-versions" }}-
# - restore_cache:
# keys:
# - solidus-installer-v10-{{ checksum "/tmp/.ruby-versions" }}-{{ checksum "/tmp/.gems-versions" }}
# - solidus-installer-v10-{{ checksum "/tmp/.ruby-versions" }}-
- run:
name: "Prepare the rails application"
command: |
cd /tmp
test -d my_app || gem install rails -v "< 7.1"
test -d my_app || rails new my_app --skip-git
- save_cache:
key: solidus-installer-v10-{{ checksum "/tmp/.ruby-versions" }}-{{ checksum "/tmp/.gems-versions" }}
paths:
- /tmp/my_app
- /home/circleci/.rubygems
# - save_cache:
# key: solidus-installer-v10-{{ checksum "/tmp/.ruby-versions" }}-{{ checksum "/tmp/.gems-versions" }}
# paths:
# - /tmp/my_app
# - /home/circleci/.rubygems
- run:
name: "Run `solidus:install` with `<<parameters.flags>>`"
command: |
Expand Down

0 comments on commit f29b8eb

Please sign in to comment.