parent
c5aebcc310
commit
cabe0b04a0
|
|
@ -1,2 +0,0 @@
|
||||||
|
|
||||||
# Nothing to see here
|
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
|
||||||
|
# Nothing to see here
|
||||||
|
|
||||||
|
Write-Host "Linux GOLANG build"
|
||||||
|
Write-Host "Some text to print {{.Name}}"
|
||||||
|
|
||||||
|
go build ../src/main.go
|
||||||
|
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
|
||||||
|
# Nothing to see here
|
||||||
|
|
||||||
|
Write-Host "Windows GOLANG build"
|
||||||
|
Write-Host "Some text to print {{.Name}}"
|
||||||
|
|
||||||
|
go build ../src/main.go
|
||||||
|
|
||||||
|
|
@ -3,17 +3,18 @@
|
||||||
"description": "golang build templates",
|
"description": "golang build templates",
|
||||||
"templates": [
|
"templates": [
|
||||||
{
|
{
|
||||||
"engine": "",
|
"engine": "golang",
|
||||||
"folder": "",
|
"folder": "{{.SelfFolder}}/definitions/{{.TemplateName}}",
|
||||||
"file_name": "golang.tmpl",
|
"file_name": "build_win.tmpl",
|
||||||
"output_folder": "^/build",
|
"output_folder": "^/build",
|
||||||
"output_name": "golang.ps1",
|
"output_name": "golang_windows.ps1"
|
||||||
"section": "",
|
},
|
||||||
"model": {
|
{
|
||||||
"activity": {
|
"engine": "golang",
|
||||||
"category": "BUILD"
|
"folder": "{{.SelfFolder}}/definitions/{{.TemplateName}}",
|
||||||
}
|
"file_name": "build_linux.tmpl",
|
||||||
}
|
"output_folder": "^/build",
|
||||||
}
|
"output_name": "golang_linux.ps1"
|
||||||
]
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"name": "sd01",
|
||||||
|
"description": "Markdown sequence template",
|
||||||
|
"templates": [
|
||||||
|
{
|
||||||
|
"engine": "",
|
||||||
|
"folder": "{{.SelfFolder}}/definitions/{{.TemplateName}}",
|
||||||
|
"file_name": "sd01.md.tmpl",
|
||||||
|
"output_folder": "^/docs",
|
||||||
|
"output_name": "seqdgm01.md",
|
||||||
|
"section": "",
|
||||||
|
"model": {
|
||||||
|
"activity": {
|
||||||
|
"category": "OTHER"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"name": "sd02",
|
||||||
|
"description": "Mermaid sequence template",
|
||||||
|
"templates": [
|
||||||
|
{
|
||||||
|
"engine": "",
|
||||||
|
"folder": "{{.SelfFolder}}/definitions/{{.TemplateName}}",
|
||||||
|
"file_name": "sd02.mermaid.tmpl",
|
||||||
|
"output_folder": "^/docs",
|
||||||
|
"output_name": "seqdgm02.mermaid",
|
||||||
|
"section": "",
|
||||||
|
"model": {
|
||||||
|
"activity": {
|
||||||
|
"category": "OTHER"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue