mirror of
https://github.com/go-task/task.git
synced 2024-12-12 10:45:49 +02:00
52 lines
1.0 KiB
Go
52 lines
1.0 KiB
Go
package taskfile
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
var (
|
|
// ErrCantUnmarshalPrecondition is returned for invalid precond YAML.
|
|
ErrCantUnmarshalPrecondition = errors.New("task: Can't unmarshal precondition value")
|
|
)
|
|
|
|
// Precondition represents a precondition necessary for a task to run
|
|
type Precondition struct {
|
|
Sh string
|
|
Msg string
|
|
}
|
|
|
|
// UnmarshalYAML implements yaml.Unmarshaler interface.
|
|
func (p *Precondition) UnmarshalYAML(node *yaml.Node) error {
|
|
switch node.Kind {
|
|
|
|
case yaml.ScalarNode:
|
|
var cmd string
|
|
if err := node.Decode(&cmd); err != nil {
|
|
return err
|
|
}
|
|
p.Sh = cmd
|
|
p.Msg = fmt.Sprintf("`%s` failed", cmd)
|
|
return nil
|
|
|
|
case yaml.MappingNode:
|
|
var sh struct {
|
|
Sh string
|
|
Msg string
|
|
}
|
|
if err := node.Decode(&sh); err != nil {
|
|
return err
|
|
}
|
|
p.Sh = sh.Sh
|
|
p.Msg = sh.Msg
|
|
if p.Msg == "" {
|
|
p.Msg = fmt.Sprintf("%s failed", sh.Sh)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
return fmt.Errorf("yaml: line %d: cannot unmarshal %s into precondition", node.Line, node.ShortTag())
|
|
}
|