mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-13 12:41:21 +00:00
0bb62be303
since github.com/docker/libcompose is deprecated, unmaintained and archived. and license is the same as woodpecker's, we can just copy stuff into woodpecker directly. (we only use types of that project anyway)
73 lines
1.4 KiB
Go
73 lines
1.4 KiB
Go
package yaml
|
|
|
|
import (
|
|
"io"
|
|
"io/ioutil"
|
|
"os"
|
|
|
|
"gopkg.in/yaml.v3"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/frontend/yaml/types"
|
|
)
|
|
|
|
type (
|
|
// Config defines a pipeline configuration.
|
|
Config struct {
|
|
Cache types.Stringorslice
|
|
Platform string
|
|
Branches Constraint
|
|
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
|
|
}
|
|
)
|
|
|
|
// Parse parses the configuration from bytes b.
|
|
func Parse(r io.Reader) (*Config, error) {
|
|
out, err := ioutil.ReadAll(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return ParseBytes(out)
|
|
}
|
|
|
|
// 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),
|
|
)
|
|
}
|
|
|
|
// ParseFile parses the configuration from path p.
|
|
func ParseFile(p string) (*Config, error) {
|
|
f, err := os.Open(p)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer f.Close()
|
|
return Parse(f)
|
|
}
|