Attention is currently required from: Martin L Roth.
Nicholas Chin has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/87229?usp=email )
Change subject: [RFC][POC] util/docker/doc.coreboot.org: Add Breathe and Doxygen ......................................................................
[RFC][POC] util/docker/doc.coreboot.org: Add Breathe and Doxygen
The Breathe Python module [1] provides a way to embed documentation generated by Doxygen into Sphinx documentation. Add these to the doc.coreboot.org container so that we can make use of these to keep API documentation up to date with the source code.
[1] https://breathe.readthedocs.io/en/latest/
Change-Id: I59cfe67ca476b370e6ea40323b7971b4f05ceb3d Signed-off-by: Nicholas Chin nic.c3.14@gmail.com --- M util/docker/doc.coreboot.org/Dockerfile 1 file changed, 4 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/29/87229/1
diff --git a/util/docker/doc.coreboot.org/Dockerfile b/util/docker/doc.coreboot.org/Dockerfile index 8ab1a49..531f6d6 100644 --- a/util/docker/doc.coreboot.org/Dockerfile +++ b/util/docker/doc.coreboot.org/Dockerfile @@ -12,6 +12,8 @@ git \ ttf-dejavu \ fontconfig \ + doxygen \ + && chmod 755 /makeSphinx.sh
RUN adduser -D coreboot @@ -32,7 +34,8 @@ myst-parser==2.0.0 \ sphinx===7.2.6 \ sphinx_autobuild===2024.2.4 \ - sphinx_rtd_theme===2.0.0 + sphinx_rtd_theme===2.0.0 \ + breathe===4.36.0
RUN git config --global --add safe.directory /data-in