Merge pull request #777 from sgmap/add_arch_template_key_circle_ci

Circle CI : Use the cache template key
This commit is contained in:
gregoirenovel 2017-10-02 18:15:04 +02:00 committed by GitHub
commit 651e06bb8b

View file

@ -17,12 +17,12 @@ jobs:
name: Install System Dependencies
command: apt-get update -qq && apt-get install -y build-essential nodejs
- restore_cache:
key: bundle-install-v3-{{ checksum "Gemfile.lock" }}
key: bundle-install-v3-{{ arch }}-{{ checksum "Gemfile.lock" }}
- run:
name: Install Ruby Dependencies
command: bundle install
- save_cache:
key: bundle-install-v3-{{ checksum "Gemfile.lock" }}
key: bundle-install-v3-{{ arch }}-{{ checksum "Gemfile.lock" }}
paths:
- /usr/local/bundle
- restore_cache: