Skip to content
Snippets Groups Projects

Develop

Closed Ghost User requested to merge develop into master
2 files
+ 16
1
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 14
0
goplantuml:
image: golang:1.14-alpine
stage: .post
when: manual
variables:
FILENAME: "ClassDiagram.puml"
script:
# install git
- apk update && apk add git
# install goplantuml
- go get github.com/jfeliu007/goplantuml/cmd/goplantuml
# run goplantuml
- goplantuml "${CI_PROJECT_DIR}/nucleus" >> "$FILENAME"
Loading