From da5318eb8efd8ff5278752f3574dcb108bce8628 Mon Sep 17 00:00:00 2001 From: aescling <11325618-aescling@users.noreply.gitlab.com> Date: Wed, 16 Nov 2022 03:58:41 +0000 Subject: [PATCH] CI: set bundle in deployment mode This will require Gemfile.lock integrity for a CI build to pass, like we reuquire on prod. --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bee338a39..7a20909a2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -48,6 +48,7 @@ before_script: - apt-get update -q && apt-get install -yqq git libicu-dev libidn11-dev nodejs - corepack enable && yarn set version latest - bundle config set path 'vendor' + - bundle config set deployment 'true' - bundle config without 'development production' - ruby -v - bundle install -j $(nproc) -- 2.47.3