diff options
-rw-r--r-- | .gitlab-ci.yml | 4 | ||||
-rw-r--r-- | wscript | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5c92cdb7..16992228 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -88,7 +88,7 @@ test:x64_dbg: - groff -Thtml -P -l -P -r -man -wall doc/serdi.1 > build/doc/serdi.html needs: ["x64_dbg"] artifacts: - paths: ["build/coverage", "build/doc"] + paths: ["build/index.html", "build/coverage", "build/doc"] x64_rel: @@ -220,7 +220,7 @@ pages: - mv build/doc/*.svg .public/images - mv build/doc/html/ .public/doc/html - mv build/coverage/ .public/coverage - - mv build/doc/index.html .public/index.html + - mv build/index.html .public/index.html - mv build/doc/serdi.html .public/man/serdi.html - mv .public public artifacts: @@ -267,7 +267,7 @@ def build(bld): autowaf.build_dox(bld, 'SERD', SERD_VERSION, top, out) bld(features='subst', source='doc/index.html.in', - target='doc/index.html', + target='index.html', install_path='', name='index', SERD_VERSION=SERD_VERSION) |