Skip to content

Commit

Permalink
chore: bump up bundler version
Browse files Browse the repository at this point in the history
  • Loading branch information
tanakaworld committed Mar 24, 2019
1 parent 2bd01a8 commit 524d90d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
21 changes: 16 additions & 5 deletions .circleci/config.yml
Expand Up @@ -7,7 +7,9 @@ jobs:
build:
docker:
# specify the version you desire here
- image: circleci/ruby:2.5.0-node-browsers
- image: circleci/ruby:2.6.0-node-browsers
environment:
BUNDLER_VERSION: 2.0.1

# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
Expand All @@ -19,12 +21,21 @@ jobs:
steps:
- checkout

- run:
name: setup bundler
command: |
sudo gem update --system
sudo gem uninstall bundler
sudo rm /usr/local/bin/bundle
sudo rm /usr/local/bin/bundler
sudo gem install bundler
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "Gemfile.lock" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- v1-dependencies-{{ checksum "Gemfile.lock" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

- run:
name: install dependencies
Expand Down Expand Up @@ -58,4 +69,4 @@ jobs:
path: /tmp/test-results
- store_artifacts:
path: /tmp/test-results
destination: test-results
destination: test-results
2 changes: 1 addition & 1 deletion Gemfile.lock
Expand Up @@ -127,4 +127,4 @@ DEPENDENCIES
sqlite3 (~> 1.3.6)

BUNDLED WITH
1.17.3
2.0.1

0 comments on commit 524d90d

Please sign in to comment.