summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 000000000..1aee0c1fc
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,17 @@
+pages:
+ image: alpine
+ script:
+ - apk --no-cache add py2-pip python-dev
+ - pip install sphinx
+ - cd docs
+ - apk --no-cache add make
+ - make html
+ - mv _build/html/ ../public/
+ artifacts:
+ paths:
+ - public
+ only:
+ refs:
+ - master
+ changes:
+ - docs/**