Skip to content

Add create_entity_markers function #27

Add create_entity_markers function

Add create_entity_markers function #27

Workflow file for this run

name: Build documentation
on:
pull_request:
branches: [main]
workflow_call:
workflow_dispatch:
env:
DEB_PYTHON_INSTALL_LAYOUT: deb_system
DISPLAY: ":99.0"
jobs:
build:
runs-on: ubuntu-24.04
container: ghcr.io/fenics/dolfinx/lab:v0.8.0
env:
PUBLISH_DIR: ./_build/html
DISPLAY: ":99.0"
PYVISTA_TRAME_SERVER_PROXY_PREFIX: "/proxy/"
PYVISTA_TRAME_SERVER_PROXY_ENABLED: "True"
PYVISTA_OFF_SCREEN: false
PYVISTA_JUPYTER_BACKEND: "html"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies for pyvista
run: apt-get update && apt-get install -y libgl1-mesa-glx libxrender1 xvfb
- name: Install dependencies
run: python3 -m pip install --no-build-isolation ".[docs]"
- name: Build docs
run: jupyter book build -W --keep-going .
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ${{ env.PUBLISH_DIR }}