diff options
author | ThibG <thib@sitedethib.com> | 2020-01-28 19:38:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-28 19:38:37 +0100 |
commit | abe2cc489bf421b5bfdf9d804104bb5ba2d1faa6 (patch) | |
tree | df4b6abe95f0e4c9a422eee52ccc03a8571655fe /.circleci/config.yml | |
parent | 67b8af34b3df55ba74a53af731f275d0a4c6d9f8 (diff) | |
parent | 8bb5d1abaad3bec92ac8d9cefcf5b1871429edcb (diff) |
Merge pull request #1272 from ThibG/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 5b61b7453..3ba027d95 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -69,7 +69,12 @@ aliases: - *install_system_dependencies - run: ruby -e 'puts RUBY_VERSION' | tee /tmp/.ruby-version - *restore_ruby_dependencies - - run: bundle install --clean --jobs 16 --path ./vendor/bundle/ --retry 3 --with pam_authentication --without development production && bundle clean + - run: bundle config set clean 'true' + - run: bundle config set deployment 'true' + - run: bundle config set with 'pam_authentication' + - run: bundle config set without 'development production' + - run: bundle config set frozen 'true' + - run: bundle install --jobs 16 --retry 3 && bundle clean - save_cache: key: v2-ruby-dependencies-{{ checksum "/tmp/.ruby-version" }}-{{ checksum "Gemfile.lock" }} paths: |