2018-02-17 14:22:18 -02:00
|
|
|
package taskfile
|
|
|
|
|
2019-02-24 09:24:57 +01:00
|
|
|
// Tasks represents a group of tasks
|
2018-02-17 14:22:18 -02:00
|
|
|
type Tasks map[string]*Task
|
|
|
|
|
|
|
|
// Task represents a task
|
|
|
|
type Task struct {
|
2019-05-17 13:13:47 -07:00
|
|
|
Task string
|
|
|
|
Cmds []*Cmd
|
|
|
|
Deps []*Dep
|
|
|
|
Desc string
|
|
|
|
Summary string
|
|
|
|
Sources []string
|
|
|
|
Generates []string
|
|
|
|
Status []string
|
2019-05-28 12:28:29 -07:00
|
|
|
Preconditions []*Precondition
|
2019-05-17 13:13:47 -07:00
|
|
|
Dir string
|
|
|
|
Vars Vars
|
|
|
|
Env Vars
|
|
|
|
Silent bool
|
|
|
|
Method string
|
|
|
|
Prefix string
|
|
|
|
IgnoreError bool `yaml:"ignore_error"`
|
2018-02-17 14:22:18 -02:00
|
|
|
}
|