Skip to content

Add meson wrap update CI #48

Add meson wrap update CI

Add meson wrap update CI #48

Workflow file for this run

name: Build the documentation
on:
push:
branches:
- 'main'
jobs:
build-doc:
name: Build the documentation
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.14'
- name: install deps (ubuntu)
run: |
sudo apt-get update
sudo apt-get install autoconf automake wget nasm
- name: Install meson
run: pip install meson meson-python
- name: Build dependencies
run: ./build_dependencies.sh
- name: Build project
run: pip install --no-build-isolation --editable .[dev] -Csetup-args="--pkg-config-path=$(pwd)/build_dependencies/usr/local/lib/pkgconfig"
- name: Run mkdocs
run: mkdocs gh-deploy --force