summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 16b0b5a..f2910aa 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -27,3 +27,21 @@ test:
reports:
junit: tests/rspec-*.xml
metrics: metrics.txt
+
+pages:
+ stage: deploy
+ dependencies:
+ - test
+ script:
+ - mkdir public
+ - mv cov_html public/coverage
+ - cd devel
+ - make
+ - mv requirements/html ../public/requirements
+ - mv script/html ../public/script
+ - mv vision/html ../public/vision
+ artifacts:
+ paths:
+ - public
+ only:
+ - master