9bc09e9d39
Bumps [third-party/doxyconfig](https://github.com/LizardByte/doxyconfig) from `671b494` to `6d145da`. - [Commits](https://github.com/LizardByte/doxyconfig/compare/671b494f3cbe8597a36d81869a864dc9fff497f4...6d145dab2ec1f387920036c7fffc1d08d52fe926) --- updated-dependencies: - dependency-name: third-party/doxyconfig dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>
31 lines
790 B
YAML
31 lines
790 B
YAML
---
|
|
# .readthedocs.yaml
|
|
# Read the Docs configuration file
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
|
|
version: 2
|
|
|
|
build:
|
|
os: ubuntu-24.04
|
|
tools:
|
|
python: "miniconda-latest"
|
|
commands:
|
|
- |
|
|
if [ -f readthedocs_build.sh ]; then
|
|
doxyconfig_dir="."
|
|
else
|
|
doxyconfig_dir="./third-party/doxyconfig"
|
|
fi
|
|
chmod +x "${doxyconfig_dir}/readthedocs_build.sh"
|
|
export DOXYCONFIG_DIR="${doxyconfig_dir}"
|
|
"${doxyconfig_dir}/readthedocs_build.sh"
|
|
|
|
# using conda, we can get newer doxygen and graphviz than ubuntu provide
|
|
# https://github.com/readthedocs/readthedocs.org/issues/8151#issuecomment-890359661
|
|
conda:
|
|
environment: third-party/doxyconfig/environment.yml
|
|
|
|
submodules:
|
|
include: all
|
|
recursive: true
|