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:
authorJohn Doe <axil@gitlab.com>2018-05-24 14:31:17 +0300
committerJohn Doe <axil@gitlab.com>2018-05-24 14:31:17 +0300
commitd3d39735d863ac144ea4fc997d30c80f4374df06 (patch)
tree17a098183e5ab8df7823f4f2755f7ed25a8cd90b
parente05da499311289ebdcabbddd249a4dfe93c2e58b (diff)
Bundle exec everything
-rw-r--r--.gitlab-ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 913b2cf1..82e08c77 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -59,8 +59,8 @@ before_script:
.build_base: &build_base
stage: build
script:
- - rake setup_git default
- - nanoc compile -VV
+ - bundle exec rake setup_git default
+ - bundle exec nanoc compile -VV
artifacts:
paths:
- public
@@ -105,7 +105,7 @@ compile_dev:
internal_links:
stage: test
script:
- - nanoc check internal_links
+ - bundle exec nanoc check internal_links
allow_failure: true
cache:
key: "test-$CI_COMMIT_REF_NAME"