1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
.docs-base:
timeout: 10m
extends:
- .build-common
- .use-alpine/x86_64_build
artifacts:
expose_as: 'Documentation preview'
paths:
- public/
variables:
BUILDTYPE: release
UNWIND: disabled
EXTRA_OPTION:
--auto-features=disabled
-D platforms=
-D glx=disabled
-D html-docs=enabled
-D html-docs-path=$CI_PROJECT_DIR/public
RUN_MESON_TESTS: "false"
script:
- !reference [.meson-build-only, script]
- echo "Documentation website preview is available at $ARTIFACTS_BASE_URL/public/index.html"
|