Skip to content

Commit 5f6afe1

Browse files
committed
ci(plantuml): install graphviz on runner
PlantUML's -version probe exits 16 when dot is absent, failing the step even though smetana bypasses Graphviz for our diagrams. Installing it explicitly keeps the smoke test meaningful and removes the failure mode for any future non-smetana diagram.
1 parent f083fdc commit 5f6afe1

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/render-diagrams.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ jobs:
3030
distribution: temurin
3131
java-version: '17'
3232

33+
- name: Install Graphviz
34+
run: sudo apt-get update -q && sudo apt-get install -y graphviz
35+
3336
- name: Fetch PlantUML jar
3437
run: |
3538
curl -fsSL -o plantuml.jar \

0 commit comments

Comments
 (0)