This is an automated email from the ASF dual-hosted git repository.

acassis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-website.git


The following commit(s) were added to refs/heads/master by this push:
     new b81f7bde66 Support plantuml in documentation build
b81f7bde66 is described below

commit b81f7bde66e5b9fd3f901b65b487c0dcb78ed246
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"

Reply via email to