mirror of
https://github.com/drone/drone-cli.git
synced 2026-01-20 18:01:34 +01:00
36 lines
621 B
Go
36 lines
621 B
Go
package engine
|
|
|
|
import (
|
|
"encoding/json"
|
|
"io"
|
|
"os"
|
|
"strings"
|
|
)
|
|
|
|
// Parse parses the pipeline config from an io.Reader.
|
|
func Parse(r io.Reader) (*Spec, error) {
|
|
cfg := Spec{}
|
|
err := json.NewDecoder(r).Decode(&cfg)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &cfg, nil
|
|
}
|
|
|
|
// ParseFile parses the pipeline config from a file.
|
|
func ParseFile(path string) (*Spec, error) {
|
|
f, err := os.Open(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer f.Close()
|
|
return Parse(f)
|
|
}
|
|
|
|
// ParseString parses the pipeline config from a string.
|
|
func ParseString(s string) (*Spec, error) {
|
|
return Parse(
|
|
strings.NewReader(s),
|
|
)
|
|
}
|