Skip to content

add more options

add more options #34

Workflow file for this run

name: Docs
on:
push:
pull_request:
branches:
- main
- 'release/**'
- 'develop/**'
jobs:
docs:
runs-on: ubuntu-latest
container: ghcr.io/acts-project/ubuntu2004:v29
env:
DOXYGEN_WARN_AS_ERROR: YES
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: >
curl -SL https://www.doxygen.nl/files/doxygen-1.9.4.linux.bin.tar.gz | tar -xzC .
&& mv doxygen-1.9.4/bin/doxygen /usr/local/bin/doxygen
&& pip3 install --upgrade pip
&& pip install -r docs/requirements.txt
- name: Configure
run: cmake -B build -S . -GNinja -DACTS_BUILD_DOCS=ON
- name: Build
run: cmake --build build --target docs-with-api
- uses: actions/upload-artifact@v2
with:
name: acts-docs
path: docs/_build/html/