diff options
author | David Robillard <d@drobilla.net> | 2023-05-11 21:03:05 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-05-11 21:03:05 -0400 |
commit | 4bccd1d897f17a352ea28387a40595e7cb7d825d (patch) | |
tree | a26404d05c36222288fe0014eea6d3915b72a5f7 | |
parent | 19d6da07a59e6230801fa7ae73b07391f6393098 (diff) | |
download | zix-4bccd1d897f17a352ea28387a40595e7cb7d825d.tar.gz zix-4bccd1d897f17a352ea28387a40595e7cb7d825d.tar.bz2 zix-4bccd1d897f17a352ea28387a40595e7cb7d825d.zip |
Upload documentation from cleaner installed version
-rw-r--r-- | .gitlab-ci.yml | 9 | ||||
-rw-r--r-- | README.md | 4 |
2 files changed, 7 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9de6a7b..921792d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,15 +10,16 @@ default: dev: image: lv2plugin/debian-x64 script: - - meson setup build -Dbuildtype=debug -Dwarning_level=3 -Dwerror=true -Db_coverage=true -Ddocs=enabled -Dlint=true + - meson setup build -Dbuildtype=debug -Dwarning_level=3 -Dwerror=true -Db_coverage=true -Dlint=true -Ddocs=enabled -Dprefix=/ - ninja -C build test - ninja -C build coverage-html + - DESTDIR=$(pwd)/build/dest meson install -C build - meson configure -Dbuildtype=release -Db_coverage=false build - ninja -C build test coverage: '/ *lines\.*: \d+\.\d+.*/' artifacts: paths: - - build/doc + - build/dest/share/doc - build/meson-logs/coveragereport static: @@ -128,8 +129,8 @@ pages: script: - mkdir -p .public/doc - mv build/meson-logs/coveragereport/ .public/coverage - - mv build/doc/singlehtml .public/doc/ - - mv build/doc/html .public/doc/ + - mv build/dest/share/doc/zix-0/singlehtml .public/doc/singlehtml + - mv build/dest/share/doc/zix-0/html .public/doc/html - mv .public public needs: - dev @@ -38,7 +38,7 @@ Documentation ------------- * [Installation Instructions](INSTALL.md) - * [API reference (single page)](https://drobilla.gitlab.io/zix/doc/singlehtml) - * [API reference (paginated)](https://drobilla.gitlab.io/zix/doc/html) + * [API reference (single page)](https://drobilla.gitlab.io/zix/doc/singlehtml/) + * [API reference (paginated)](https://drobilla.gitlab.io/zix/doc/html/) -- David Robillard <d@drobilla.net> |