sync with OpenBSD -current
This commit is contained in:
parent
b5b25afdb8
commit
2c72e27ed2
147 changed files with 41128 additions and 10 deletions
30
lib/libva/.github/workflows/docs.yml
vendored
Normal file
30
lib/libva/.github/workflows/docs.yml
vendored
Normal file
|
@ -0,0 +1,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@v4
|
||||
- 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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue