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