diff options
author | David Robillard <d@drobilla.net> | 2020-12-20 20:20:07 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-21 09:48:06 +0100 |
commit | f95f22013d51133ec1a7b1554878ff354b9f0f21 (patch) | |
tree | 2f65c78412fa9a083bc82e49480ba206fa14a689 /.gitlab-ci.yml | |
parent | fabf7113483ffd70024df989de3aa9361146d60c (diff) | |
download | serd-f95f22013d51133ec1a7b1554878ff354b9f0f21.tar.gz serd-f95f22013d51133ec1a7b1554878ff354b9f0f21.tar.bz2 serd-f95f22013d51133ec1a7b1554878ff354b9f0f21.zip |
Generate documentation with Sphinx
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 16992228..3f50493d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -88,7 +88,9 @@ test:x64_dbg: - groff -Thtml -P -l -P -r -man -wall doc/serdi.1 > build/doc/serdi.html needs: ["x64_dbg"] artifacts: - paths: ["build/index.html", "build/coverage", "build/doc"] + paths: + - build/doc + - build/coverage x64_rel: @@ -216,15 +218,12 @@ pages: script: - mkdir -p .public/doc - mkdir -p .public/man - - mkdir -p .public/images - - mv build/doc/*.svg .public/images - - mv build/doc/html/ .public/doc/html - - mv build/coverage/ .public/coverage - - mv build/index.html .public/index.html + - mkdir -p .public/c + - mv build/doc/c/singlehtml .public/c/singlehtml - mv build/doc/serdi.html .public/man/serdi.html - mv .public public artifacts: paths: - public - only: - - master + # only: + # - master |