You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I did not manage to force straight or ortho lines in a yaml diagram.
here is the code I tried (with or without the 2 commented lines, it has no effect)
@startyaml
'skinparam useBetaStyle false
'skinparam linetype ortho
stages:
- build
- test
build-code-job:
stage: build
script:
- echo "Check the ruby version, then build some Ruby project files:"
- ruby -v
- rake
test-code-job1:
stage: test
script:
- echo "If the files are built successfully, test some files with one command:"
- rake test1
test-code-job2:
stage: test
script:
- echo "If the files are built successfully, test other files with a different command:"
- rake test2
@endyaml
This would be useful when drawing a more complex CI file.
The text was updated successfully, but these errors were encountered:
Hi,
I did not manage to force
straight
orortho
lines in a yaml diagram.here is the code I tried (with or without the 2 commented lines, it has no effect)
This would be useful when drawing a more complex CI file.
The text was updated successfully, but these errors were encountered: