This is an automated email from the ASF dual-hosted git repository. linguini pushed a commit to branch plantuml-docs in repository https://gitbox.apache.org/repos/asf/nuttx-website.git
commit 835930888e671713e710c313fd35705803a281bc Author: Matteo Golin <[email protected]> AuthorDate: Fri Feb 13 13:44:14 2026 -0500 Support plantuml in documentation build Include installation of PlantUML as a pre-cursor to building the documentation. Allows for support of PlantUML syntax to render UML diagrams in the docs, as part of https://github.com/apache/nuttx/pull/18379 --- .github/workflows/main.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d227611be9..9091786e48 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -40,6 +40,13 @@ jobs: source .venv/bin/activate export PIPENV_VERBOSITY=-1 pip3 install pipenv + + echo "=======================================================" + echo " Install PlantUML" + echo "=======================================================" + + sudo apt update + sudo apt install plantuml echo "=======================================================" echo " Setup nuttx/Documentation"
