summaryrefslogtreecommitdiffstats
path: root/.circleci
diff options
context:
space:
mode:
authorDavid Cook <divergentdave@gmail.com>2020-07-18 12:00:59 -0500
committerGitHub <noreply@github.com>2020-07-18 19:00:59 +0200
commitf2d977914efe0707ac6258c23ebfc68d5bba24e6 (patch)
tree14d62f514a1bd2e334e6b89e2dd2c1ed2e9fdf45 /.circleci
parent98f6380dee5c93d9cdc4d94ec81d31a3bfa0a943 (diff)
Set bundle config in local file, and set path (#14351)
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml11
1 files changed, 6 insertions, 5 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 9f43a057356..862fa126b7f 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -72,11 +72,12 @@ aliases:
- run:
name: Set bundler settings
command: |
- bundle config clean 'true'
- bundle config deployment 'true'
- bundle config with 'pam_authentication'
- bundle config without 'development production'
- bundle config frozen 'true'
+ bundle config --local clean 'true'
+ bundle config --local deployment 'true'
+ bundle config --local with 'pam_authentication'
+ bundle config --local without 'development production'
+ bundle config --local frozen 'true'
+ bundle config --local path $BUNDLE_PATH
- run:
name: Install bundler dependencies
command: bundle check || (bundle install && bundle clean)