File: gitlab-ci-inc.yml

package info (click to toggle)
mesa 25.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 322,268 kB
  • sloc: ansic: 2,212,173; xml: 1,032,268; cpp: 519,750; python: 81,988; asm: 40,568; yacc: 11,976; lisp: 5,067; lex: 3,452; sh: 1,049; makefile: 224
file content (22 lines) | stat: -rw-r--r-- 571 bytes parent folder | download
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"