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:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-08-12 03:10:37 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-08-12 03:10:37 +0300
commitd9e285a74bf01b1a61108a8091a88579361ef189 (patch)
tree2f574a2af4fb59ab26c431f6de6aeeb83d4c4f08 /lib/gitlab/ci/templates/Ruby.gitlab-ci.yml
parent63fd08e6b429cd3af81cf63dfc0e5fc853d04086 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/ci/templates/Ruby.gitlab-ci.yml')
-rw-r--r--lib/gitlab/ci/templates/Ruby.gitlab-ci.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/gitlab/ci/templates/Ruby.gitlab-ci.yml b/lib/gitlab/ci/templates/Ruby.gitlab-ci.yml
index 490fc779e17..0c8b98dc1cf 100644
--- a/lib/gitlab/ci/templates/Ruby.gitlab-ci.yml
+++ b/lib/gitlab/ci/templates/Ruby.gitlab-ci.yml
@@ -29,7 +29,8 @@ before_script:
- ruby -v # Print out ruby version for debugging
# Uncomment next line if your rails app needs a JS runtime:
# - apt-get update -q && apt-get install nodejs -yqq
- - bundle install -j $(nproc) --path vendor # Install dependencies into ./vendor/ruby
+ - bundle config set path 'vendor' # Install dependencies into ./vendor/ruby
+ - bundle install -j $(nproc)
# Optional - Delete if not using `rubocop`
rubocop: