Skip to content

Commit

Permalink
build: enable larger PlantUML diagrams
Browse files Browse the repository at this point in the history
  • Loading branch information
dragondive committed Jul 25, 2024
1 parent 4d3e394 commit ead16ca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/queen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,8 @@ jobs:
chmod +x ./scripts/execution_time.bash
for (( n = 0; n <= ${{ inputs.maximum_n }}; n++)); do
if command_output=$(./scripts/execution_time.bash \
java -jar plantuml.jar -tsvg -Dinput_n=$n ./plantuml/queen.puml); then
java -Xmx2g -DPLANTUML_LIMIT_SIZE=65536 -jar plantuml.jar \
-tsvg -Dinput_n=$n ./plantuml/queen.puml); then
execution_time=$(echo "$command_output" | tail -n 1)
printf "%s,%d,%d\n" \
"PlantUML (${{ needs.compute-latest-solution-tag.outputs.tag }})" \
Expand Down

0 comments on commit ead16ca

Please sign in to comment.