grim/convey

remove dev-convey.yml

2020-03-02, Gary Kramlich
e577abd976e0
remove dev-convey.yml
// Convey
// Copyright 2016-2019 Gary Kramlich <grim@reaperworld.com>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package tasks
import (
"path/filepath"
log "github.com/sirupsen/logrus"
"hg.sr.ht/~grim/convey/environment"
"hg.sr.ht/~grim/convey/path"
"hg.sr.ht/~grim/convey/runtime"
"hg.sr.ht/~grim/convey/yaml"
)
type Export struct {
Files yaml.StringOrSlice `yaml:"files"`
Path string `yaml:"path"`
}
// New creates a new Export task.
func (e *Export) New() Task {
return &Export{}
}
// Valid validates the export task.
func (e *Export) Valid() error {
if len(e.Files) == 0 {
return errNoFiles
}
return nil
}
// Executes the task
func (e *Export) Execute(name string, logger *log.Entry, env *environment.Environment, rt *runtime.Runtime) error {
fullEnv := env.Copy().Merge(rt.Environment)
for _, pattern := range e.Files {
pattern = fullEnv.Map(pattern)
src, dst := path.ParseFilePath("", pattern)
matches, err := filepath.Glob(filepath.Join(rt.State.Workspace.Volume(), src))
if err != nil {
return err
}
for _, match := range matches {
err = rt.State.Workspace.Export(match, dst)
if err != nil {
return err
}
}
}
return nil
}