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

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Read <eread@gitlab.com>2022-05-06 16:21:14 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2022-05-06 16:21:14 +0300
commite3a574975682ee3f0b68cdf0c6a4b6b93c303eaa (patch)
treea736e733e0da02b6a03339ee51bf515073eb1e14 /.gitlab-ci.yml
parent2c78e70220d2747f3f7b11db72bc70d49280328f (diff)
Add bundler version as explicit Ruby dependency
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1eef1539..607dd96d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -11,9 +11,11 @@ default:
image: registry.gitlab.com/gitlab-org/gitlab-docs:base
tags:
- gitlab-org
- # Check Ruby version and install gems
+ # Check Ruby, RubyGems, and Bundler versions and install gems
before_script:
- ruby -v
+ - gem -v
+ - bundle -v
- bundle config set path 'vendor'
- NOKOGIRI_USE_SYSTEM_LIBRARIES=1 bundle install --jobs 4