From abcbd2c153a56539cba9f5489ded7f45f731681d Mon Sep 17 00:00:00 2001
From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com>
Date: Sun, 26 Jan 2020 14:50:08 +0100
Subject: [PATCH] CI: Initial gitlab CI configuration for building docs.

---
 .gitlab-ci.yml | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)
 create mode 100644 .gitlab-ci.yml

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..c60cf15
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,27 @@
+image: goblinogm/sphinx-builder
+
+cache:
+  paths:
+  - vendor
+
+test:
+  script:
+  - cd /app
+  - pip install -I -r requirements.txt
+  - cd /app/docs
+  - make html
+  except:
+    - master
+
+pages:
+  script:
+  - cd /app
+  - pip install -I -r requirements.txt
+  - cd /app/docs
+  - make html
+  - mv /app/docs/_build/html /app/public
+  artifacts:
+    paths:
+    - public
+  only:
+  - master
-- 
GitLab