diff --git a/docs/gitlab_pages.rst b/docs/gitlab_pages.rst new file mode 100644 index 00000000..23f913d0 --- /dev/null +++ b/docs/gitlab_pages.rst @@ -0,0 +1,90 @@ +.. _gitlab_pages: + +======================= +Hosting on GitLab Pages +======================= + +You use `GitLab Pages <_gitlab_pages_website>`_ to host documentation generated by ``sphinx-multiversion``. + +Configure your project +====================== + +Because of the way GitLab checks out a repository when running a CI task, you'll need to whitelist remote branches in your ``conf.py``. + +.. code-block:: python + + smv_remote_whitelist = r'^(origin)$' + +If this is not specified, ``sphinx-multiversion`` will only be able to generate documentation for whitelisted tag patterns. + +Create ``.gitlab-ci.yml`` +========================= + +GitLab pages always deploys your website from a specific folder called ``public`` in your repository. To deploy to your site, GitLab pages uses its built in continuous integration tools to build your site and publish it to the GitLab server. To accomplish this, you need to create a ``.gitlab-ci.yml`` in your repository. This recipe will build your documentation, move it to a folder named ``public``, and then create an artifact compressing this folder. Populate it as follows. + +.. code-block:: yaml + + test: + image: python:latest + stage: test + before_script: + - export + - apt update -y + - apt install -y texlive latexmk texlive-latex-extra # only necessary for pdf generation + - pip install -r requirements.txt + script: + - sphinx-multiversion docs/source/ public + tags: + - docker # may need removal depending on what available GitLab runners are tagged with + - bash + only: + - branches + except: + - master + + pages: + image: python:latest + stage: deploy + before_script: + - export + - apt update -y + - apt install -y texlive latexmk texlive-latex-extra # only necessary for pdf generation + - pip install -r requirements.txt + script: + - sphinx-multiversion docs/source public + - | # Add index.html to public root to redirect to $CI_DEFUALT_BRANCH/index.html + cat >public/index.html << EOF + + +
+