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:
authorMarcel Amirault <mamirault@gitlab.com>2020-04-02 07:10:55 +0300
committerMarcel Amirault <mamirault@gitlab.com>2020-04-02 07:10:55 +0300
commit7ed103dec02ec0c1a676caec40f3691bc1df45ce (patch)
tree07a4fec137623132a52e6b4bfc47d3d19c502cc4 /.gitlab-ci.yml
parent27c274e4f09c1553d6cf9c7bc060f5d6c380015d (diff)
Use default: in pipeline
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml15
1 files changed, 7 insertions, 8 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8ddf68bc..dd219a3c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,4 +1,10 @@
-image: registry.gitlab.com/gitlab-org/gitlab-docs:base
+default:
+ image: registry.gitlab.com/gitlab-org/gitlab-docs:base
+ # Check Ruby version and install gems
+ before_script:
+ - ruby -v
+ - NOKOGIRI_USE_SYSTEM_LIBRARIES=1 bundle install --jobs 4 --path vendor
+
stages:
- build-images
@@ -20,13 +26,6 @@ variables:
GIT_DEPTH: '20'
#
-# Check Ruby version and install gems
-#
-before_script:
- - ruby -v
- - NOKOGIRI_USE_SYSTEM_LIBRARIES=1 bundle install --jobs 4 --path vendor
-
-#
# Retry a job automatically if it fails (2 times)
#
.retry: