From 48b950e00840e07a247f7112bcb8de99856d8ee0 Mon Sep 17 00:00:00 2001 From: Dorian Zedler Date: Wed, 8 Apr 2020 16:08:35 +0000 Subject: [PATCH] add ci --- .gitlab-ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..4702a02 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,22 @@ +# you can delete this line if you're not using Docker +# image: busybox:latest + +before_script: + - apt install doxygen texlive-base texlive-latex-extra texlive-fonts-extra texlive-fonts-recommended + - git clone git://github.com/mosra/m.css + - cd m.css/documentation + - pip3 install jinja2 Pygmentsh + +build1: + stage: build + script: + - ./doxygen.py path/to/your/Doxyfile-mcss + +pages: + script: + - mv docs/html/ public/ + artifacts: + paths: + - public + only: + - master