Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLin Jen-Shin <godfat@godfat.org>2017-04-13 11:02:36 +0300
committerLin Jen-Shin <godfat@godfat.org>2017-04-13 11:02:36 +0300
commit075d2bacfd6e9d34763ac905c45c8a7dc1278c35 (patch)
tree622024f35903257fd485a10221e3c014e51b615a /.gitlab-ci.yml
parent11ef3154bbd7073a3083e05a79f4bf022ccd6859 (diff)
Properly use $BUNDLE_INSTALL_FLAGS
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6ffc60dc6a0..1e87814c49b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -427,10 +427,10 @@ bundler:audit:
script:
- git fetch origin v8.14.10
- git checkout -f FETCH_HEAD
- - bundle install --without production --jobs $(nproc) $FLAGS --retry=3
+ - bundle install $BUNDLE_INSTALL_FLAGS
- bundle exec rake db:drop db:create db:schema:load db:seed_fu
- git checkout $CI_COMMIT_SHA
- - bundle install --without production --jobs $(nproc) $FLAGS --retry=3
+ - bundle install $BUNDLE_INSTALL_FLAGS
- . scripts/prepare_build.sh
- bundle exec rake db:migrate