File: gitlab-ci-inc.yml

package info (click to toggle)
mesa 26.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 325,884 kB
  • sloc: ansic: 2,260,508; xml: 1,035,283; cpp: 528,036; python: 83,447; asm: 40,568; yacc: 12,040; lisp: 3,663; lex: 3,461; sh: 1,035; 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"