Created
June 18, 2019 21:52
-
-
Save hjhart/6a0fe4acd5eaf1b728e83ae7e4edbf2b to your computer and use it in GitHub Desktop.
This file contains 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 characters
bundle_install: | |
description: Bundle Install | |
steps: | |
- restore_cache: | |
keys: | |
- bundle-{{ arch }}-{{ checksum "~/voom/Gemfile.lock" }} | |
- 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 --without production --without staging | |
- save_cache: | |
key: bundle-{{ arch }}-{{ checksum "~/voom/Gemfile.lock" }} | |
paths: | |
- ~/voom/vendor/bundle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment