diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fdaf34ecae1cd5f94159e87483446b1d1439a5ea..f6c33717fe6097ec42a571c4cf67c339ca06b57b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,11 +1,24 @@ # This file is a template, and might need editing before it works on your project. # Full project: https://gitlab.com/pages/plain-html +image: python:3.9-bullseye +# This file is a template, and might need editing before it works on your project. +# Full project: https://gitlab.com/pages/plain-html pages: stage: deploy script: - - echo 'Nothing to do...' + - apt-get update + - apt-get install --assume-yes pandoc + - pip install numpy pandas termcolor # top import of Ohmpi.py + - pip install sphinx numpydoc sphinx_rtd_theme pandoc recommonmark + - cd doc + - make html + # also make latex? pdf? + - cd .. + - mv doc/build/html/ public/ + - ls public/ artifacts: paths: - public/ only: - - master \ No newline at end of file + - master +