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:
Diffstat (limited to 'vendor/gitlab-ci-yml/Pages/Jekyll.gitlab-ci.yml')
-rw-r--r--vendor/gitlab-ci-yml/Pages/Jekyll.gitlab-ci.yml30
1 files changed, 0 insertions, 30 deletions
diff --git a/vendor/gitlab-ci-yml/Pages/Jekyll.gitlab-ci.yml b/vendor/gitlab-ci-yml/Pages/Jekyll.gitlab-ci.yml
deleted file mode 100644
index 37f50554036..00000000000
--- a/vendor/gitlab-ci-yml/Pages/Jekyll.gitlab-ci.yml
+++ /dev/null
@@ -1,30 +0,0 @@
-# Template project: https://gitlab.com/pages/jekyll
-# Docs: https://docs.gitlab.com/ce/pages/
-image: ruby:2.3
-
-variables:
- JEKYLL_ENV: production
-
-before_script:
-- bundle install
-
-test:
- stage: test
- script:
- - bundle exec jekyll build -d test
- artifacts:
- paths:
- - test
- except:
- - master
-
-pages:
- stage: deploy
- script:
- - bundle exec jekyll build -d public
- artifacts:
- paths:
- - public
- only:
- - master
-