diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f73a5a83..c9e3db17 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -84,8 +84,10 @@ test:x64_dbg: image: lv2plugin/debian-x64 script: - python ./waf test + - mkdir -p build/doc/ - cp doc/*.svg build/doc/ - - groff -Thtml -P -l -P -r -man -wall doc/serdi.1 > build/doc/serdi.html + - cp doc/mandoc.css build/doc/ + - mandoc -Thtml -Werror -O style=mandoc.css doc/serdi.1 > build/doc/serdi.html needs: ["x64_dbg"] artifacts: paths: @@ -222,6 +224,7 @@ pages: - mv build/doc/c/singlehtml .public/c/singlehtml - mv build/doc/c/html .public/c/html - mv build/doc/serdi.html .public/man/serdi.html + - mv build/doc/mandoc.css .public/man/mandoc.css - mv .public public artifacts: paths: |