File: .gitlab-ci.yml

package info (click to toggle)
libnotify 0.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 840 kB
  • sloc: xml: 8,298; ansic: 3,167; sh: 63; python: 23; makefile: 5
file content (37 lines) | stat: -rw-r--r-- 821 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
variables:
  DEBIAN_FRONTEND: noninteractive

stages:
  - build

build:ubuntu:
  stage: build
  image: ubuntu:devel
  before_script:
    - apt-get update &&
    - apt-get install -q -y --no-install-recommends
        gobject-introspection
        gtk-doc-tools
        libgdk-pixbuf2.0-dev
        libgirepository1.0-dev
        libglib2.0-dev
        libgtk-3-dev
        libpopt-dev
        xmlto
        ninja-build
        python3-pip
        python3-setuptools
        xsltproc
        docbook-xsl-ns
    - pip3 install meson
  script:
    - meson _build -Ddocbook_docs=enabled
    - ninja -C _build install
  artifacts:
    expose_as: "Build artifacts"
    paths:
      - _build/docs/notification-spec.html
      - _build/docs/reference/html
      - _build/docs/reference/html/index.html
      - _build/meson-logs