mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-15 22:41:19 +00:00
f0e518a5a2
closes #1181 closes #834 Adds `ignore_failure` to pipeline steps. When it's set to true, if the step fails the following steps continue to execute as if no failure had occurred. --- failure enums idea: * fail (default) = if other steps run in parallel, wait for them and then let workflow fail * cancel = if other steps run in parallel, kill them * ignore = we mark the step as failed but it wont have any impact
116 lines
4.1 KiB
Go
116 lines
4.1 KiB
Go
package yaml
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"gopkg.in/yaml.v3"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/frontend/yaml/constraint"
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/frontend/yaml/types"
|
|
)
|
|
|
|
type (
|
|
// AuthConfig defines registry authentication credentials.
|
|
AuthConfig struct {
|
|
Username string
|
|
Password string
|
|
Email string
|
|
}
|
|
|
|
// Containers denotes an ordered collection of containers.
|
|
Containers struct {
|
|
Containers []*Container
|
|
}
|
|
|
|
// Container defines a container.
|
|
Container struct {
|
|
AuthConfig AuthConfig `yaml:"auth_config,omitempty"`
|
|
CapAdd []string `yaml:"cap_add,omitempty"`
|
|
CapDrop []string `yaml:"cap_drop,omitempty"`
|
|
Commands types.Stringorslice `yaml:"commands,omitempty"`
|
|
CPUQuota types.StringorInt `yaml:"cpu_quota,omitempty"`
|
|
CPUSet string `yaml:"cpuset,omitempty"`
|
|
CPUShares types.StringorInt `yaml:"cpu_shares,omitempty"`
|
|
Detached bool `yaml:"detach,omitempty"`
|
|
Devices []string `yaml:"devices,omitempty"`
|
|
Tmpfs []string `yaml:"tmpfs,omitempty"`
|
|
DNS types.Stringorslice `yaml:"dns,omitempty"`
|
|
DNSSearch types.Stringorslice `yaml:"dns_search,omitempty"`
|
|
Directory string `yaml:"directory,omitempty"`
|
|
Environment types.SliceorMap `yaml:"environment,omitempty"`
|
|
ExtraHosts []string `yaml:"extra_hosts,omitempty"`
|
|
Group string `yaml:"group,omitempty"`
|
|
Image string `yaml:"image,omitempty"`
|
|
Failure string `yaml:"failure,omitempty"`
|
|
Isolation string `yaml:"isolation,omitempty"`
|
|
Labels types.SliceorMap `yaml:"labels,omitempty"`
|
|
MemLimit types.MemStringorInt `yaml:"mem_limit,omitempty"`
|
|
MemSwapLimit types.MemStringorInt `yaml:"memswap_limit,omitempty"`
|
|
MemSwappiness types.MemStringorInt `yaml:"mem_swappiness,omitempty"`
|
|
Name string `yaml:"name,omitempty"`
|
|
NetworkMode string `yaml:"network_mode,omitempty"`
|
|
IpcMode string `yaml:"ipc_mode,omitempty"`
|
|
Networks types.Networks `yaml:"networks,omitempty"`
|
|
Privileged bool `yaml:"privileged,omitempty"`
|
|
Pull bool `yaml:"pull,omitempty"`
|
|
ShmSize types.MemStringorInt `yaml:"shm_size,omitempty"`
|
|
Ulimits types.Ulimits `yaml:"ulimits,omitempty"`
|
|
Volumes types.Volumes `yaml:"volumes,omitempty"`
|
|
Secrets Secrets `yaml:"secrets,omitempty"`
|
|
Sysctls types.SliceorMap `yaml:"sysctls,omitempty"`
|
|
When constraint.When `yaml:"when,omitempty"`
|
|
Settings map[string]interface{} `yaml:"settings"`
|
|
}
|
|
)
|
|
|
|
// UnmarshalYAML implements the Unmarshaler interface.
|
|
func (c *Containers) UnmarshalYAML(value *yaml.Node) error {
|
|
switch value.Kind {
|
|
// We support maps ...
|
|
case yaml.MappingNode:
|
|
c.Containers = make([]*Container, 0, len(value.Content)/2+1)
|
|
// We cannot use decode on specific values
|
|
// since if we try to load from a map, the order
|
|
// will not be kept. Therefore use value.Content
|
|
// and take the map values i%2=1
|
|
for i, n := range value.Content {
|
|
if i%2 == 1 {
|
|
container := &Container{}
|
|
if err := n.Decode(container); err != nil {
|
|
return err
|
|
}
|
|
|
|
if container.Name == "" {
|
|
container.Name = fmt.Sprintf("%v", value.Content[i-1].Value)
|
|
}
|
|
|
|
c.Containers = append(c.Containers, container)
|
|
}
|
|
}
|
|
|
|
// ... and lists
|
|
case yaml.SequenceNode:
|
|
c.Containers = make([]*Container, 0, len(value.Content))
|
|
for i, n := range value.Content {
|
|
container := &Container{}
|
|
if err := n.Decode(container); err != nil {
|
|
return err
|
|
}
|
|
|
|
if container.Name == "" {
|
|
container.Name = fmt.Sprintf("step-%d", i)
|
|
}
|
|
|
|
c.Containers = append(c.Containers, container)
|
|
}
|
|
|
|
default:
|
|
return fmt.Errorf("yaml node type[%d]: '%s' not supported", value.Kind, value.Tag)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (c *Container) IsPlugin() bool {
|
|
return len(c.Commands) == 0
|
|
}
|