File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 3232 run : pip install mkdocs && pip install $(mkdocs get-deps) && pip install mkdocs-material
3333 - name : Setup mike
3434 run : pip install mike
35+ - name : Setup graphviz
36+ run : sudo apt install graphviz
3537 - name : Start PlantUML server
3638 run : sh/setup-plantuml.sh
3739 - name : Build
Original file line number Diff line number Diff line change 11source sh/shared.sh
22
3- if ! java -v ; then
3+ if ! which java > /dev/null ; then
44 print " Java not found!"
5+ exit 1;
56fi ;
67
8+ java -version
9+
710print " Downloading plantuml"
811curl -LO https://github.com/plantuml/plantuml/releases/download/v1.2025.4/plantuml-mit-1.2025.4.jar
912
1013print " Starting server"
1114java -jar ./plantuml-mit-1.2025.4.jar -picoweb:8080:127.0.0.1 &
12- echo $!
15+ if [ $? -ne 0 ]; then
16+ print " Server failed!"
17+ else
18+ print " Server PID:" $!
19+ fi
You can’t perform that action at this time.
0 commit comments