From 1c4e444c0b109ce2703f066b40dcb1d2ff3a547b Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Wed, 16 Feb 2022 09:25:47 -0600 Subject: [PATCH] Adjust bundle options in CI --- .drone.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index d8f2f53..4dc1976 100644 --- a/.drone.yml +++ b/.drone.yml @@ -21,7 +21,9 @@ steps: environment: RAILS_ENV: test commands: - - bundle config set deployment 'true' + - bundle config unset deployment + - bundle config set cache_all 'true' + - bundle config set cache_path 'vendor/cache' - bundle config set with 'development test' - bundle install --jobs=3 --retry=3 - yarn install