mirror of https://github.com/databricks/cli.git
22 lines
1.1 KiB
JSON
22 lines
1.1 KiB
JSON
{
|
|
"formatter": "go run golang.org/x/tools/cmd/goimports@latest -w $FILENAMES && go fmt ./...",
|
|
"services": {
|
|
".codegen/service.go.tmpl": "cmd/{{if .IsAccounts}}account{{else}}workspace{{end}}/{{(.TrimPrefix \"account\").KebabName}}/{{(.TrimPrefix \"account\").KebabName}}.go"
|
|
},
|
|
"batch": {
|
|
".codegen/cmds-workspace.go.tmpl": "cmd/workspace/cmd.go",
|
|
".codegen/cmds-account.go.tmpl": "cmd/account/cmd.go",
|
|
".codegen/lookup.go.tmpl": "bundle/config/variable/lookup.go"
|
|
},
|
|
"toolchain": {
|
|
"required": ["go"],
|
|
"post_generate": [
|
|
"go test -timeout 240s -run TestConsistentDatabricksSdkVersion github.com/databricks/cli/internal/build",
|
|
"go run ./bundle/internal/schema/*.go ./bundle/schema/jsonschema.json",
|
|
"echo 'bundle/internal/tf/schema/\\*.go linguist-generated=true' >> ./.gitattributes",
|
|
"echo 'go.sum linguist-generated=true' >> ./.gitattributes",
|
|
"echo 'bundle/schema/jsonschema.json linguist-generated=true' >> ./.gitattributes"
|
|
]
|
|
}
|
|
}
|