- package executor
- type Result struct {
- Success bool `json:"success"`
- Stdout []string `json:"stdout"`
- Stderr []string `json:"stderr"`
- }
- type TaskResult struct {
- Success bool `json:"success"`
- Template bool `json:"template"`
- Preprocessors map[string]*Result `json:"preprocessors"`
- Build Result `json:"build"`
- Push Result `json:"push"`
- }
|