mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-15 14:34:26 +00:00
04eb7935db
Refactor - use constants for strings - more tests - move constraint code into own package Enhance - all constrains use doublestart (glob pattern matching) now Co-authored-by: Anbraten <anton@ju60.de>
51 lines
1.1 KiB
Go
51 lines
1.1 KiB
Go
package yaml
|
|
|
|
import (
|
|
"gopkg.in/yaml.v3"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/frontend/yaml/constraint"
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/frontend/yaml/types"
|
|
)
|
|
|
|
type (
|
|
// Config defines a pipeline configuration.
|
|
Config struct {
|
|
Cache types.Stringorslice
|
|
Platform string
|
|
Branches constraint.List
|
|
Workspace Workspace
|
|
Clone Containers
|
|
Pipeline Containers
|
|
Services Containers
|
|
Networks Networks
|
|
Volumes Volumes
|
|
Labels types.SliceorMap
|
|
DependsOn []string `yaml:"depends_on,omitempty"`
|
|
RunsOn []string `yaml:"runs_on,omitempty"`
|
|
SkipClone bool `yaml:"skip_clone"`
|
|
}
|
|
|
|
// Workspace defines a pipeline workspace.
|
|
Workspace struct {
|
|
Base string
|
|
Path string
|
|
}
|
|
)
|
|
|
|
// ParseBytes parses the configuration from bytes b.
|
|
func ParseBytes(b []byte) (*Config, error) {
|
|
out := new(Config)
|
|
err := yaml.Unmarshal(b, out)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return out, nil
|
|
}
|
|
|
|
// ParseString parses the configuration from string s.
|
|
func ParseString(s string) (*Config, error) {
|
|
return ParseBytes(
|
|
[]byte(s),
|
|
)
|
|
}
|