summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-10-13 07:43:37 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-10-13 07:43:37 -0500
commitb79414e336d267ba3d43c0b512f01cf096b184f3 (patch)
tree7b8734f1804379b32d409566fc371763b662f14a /.gitlab-ci.yml
parentcfb5ac8c728946c2eeddf62427279e6c0935f70e (diff)
downloadhorizon-b79414e336d267ba3d43c0b512f01cf096b184f3.tar.gz
horizon-b79414e336d267ba3d43c0b512f01cf096b184f3.tar.bz2
horizon-b79414e336d267ba3d43c0b512f01cf096b184f3.tar.xz
horizon-b79414e336d267ba3d43c0b512f01cf096b184f3.zip
Add code badge, make pages thing
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