Last active
June 18, 2019 21:57
-
-
Save hjhart/d6162db7802021e4d04b10c9b3adf0e4 to your computer and use it in GitHub Desktop.
Revisions
-
hjhart revised this gist
Jun 18, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ bundle_install: description: Bundle Install steps: - run: name: Expire cache key every month command: date '+%Y %m' > ~/voom/dependency_checksum - restore_cache: -
hjhart renamed this gist
Jun 18, 2019 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
hjhart created this gist
Jun 18, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ bundle_install: description: Bundle Install steps: - run: name: Export a cache key to BASH_ENV command: date '+%Y %m' > ~/voom/dependency_checksum - restore_cache: keys: - v1-bundle-{{ arch }}-{{ checksum "~/voom/dependency_checksum" }}-{{ checksum "~/voom/Gemfile.lock" }} - v1-bundle-{{ arch }}-{{ checksum "~/voom/dependency_checksum" }} - v1-bundle-{{ arch }}- - run: name: Install Bundler command: gem install bundler -v 1.17.3 - run: name: Bundle Install command: cd ~/voom/; bundle check || bundle install --frozen --without production --without staging - save_cache: key: v1-bundle-{{ arch }}-{{ checksum "~/voom/dependency_checksum" }}-{{ checksum "~/voom/Gemfile.lock" }} paths: - ~/voom/vendor/bundle