Commit 8d917652 authored by Rémy Coutable's avatar Rémy Coutable

Merge branch 'fix-bundler-deprecation' into 'master'

Fix a Bundler deprecation

See merge request gitlab-org/gitlab!51995
parents 6b5038e9 c80070c7
......@@ -6,7 +6,8 @@ export BUNDLE_INSTALL_FLAGS=${BUNDLE_INSTALL_FLAGS:-"--without=production develo
if [ "$USE_BUNDLE_INSTALL" != "false" ]; then
bundle --version
run_timed_command "bundle install --clean ${BUNDLE_INSTALL_FLAGS}"
bundle config set clean 'true'
run_timed_command "bundle install ${BUNDLE_INSTALL_FLAGS}"
run_timed_command "bundle check"
# When we test multiple versions of PG in the same pipeline, we have a single `setup-test-env`
# job but the `pg` gem needs to be rebuilt since it includes extensions (https://guides.rubygems.org/gems-with-extensions).
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment