File: docs.yml

package info (click to toggle)
libva 2.23.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,008 kB
  • sloc: ansic: 18,657; xml: 633; makefile: 356; sh: 117; perl: 41
file content (30 lines) | stat: -rw-r--r-- 595 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
name: docs

permissions:
  contents: read

on:
  push:
    paths-ignore:
    - '.github/workflows/**'
    - '!.github/workflows/docs.yml'
  pull_request:
    paths-ignore:
    - '.github/workflows/**'
    - '!.github/workflows/docs.yml'

jobs:
  build:
    runs-on: ubuntu-22.04
    steps:
    - uses: actions/checkout@v6
    - name: install prerequisites
      run: |
        sudo apt-get update
        sudo apt-get install -y \
          doxygen \
          libdrm-dev \
          meson
    - name: build the docs
      run: meson setup _build -D enable_docs=true && meson compile -C _build