robot: Run only relevant tests, push to core-*

From now on images built from this repo are the c3os core images.
c3os core images contains only the base image, framework files and the c3os agent.

This also sets up tests accordingly to run only to cover the c3os-agent.
This commit is contained in:
mudler
2022-08-12 15:49:41 +02:00
committed by Itxaka
parent f3ce62216c
commit 14cd97cf0d
5 changed files with 9 additions and 478 deletions

View File

@@ -59,7 +59,7 @@ func ToYAML(v map[string]interface{}) ([]byte, error) {
return out, errs
}
// ToYAMLMap turns a map string interface in dot.yaml format to a fully deep marshalled yaml
// ToYAMLMap turns a map string interface which describes a yaml file in 'dot.yaml' format to a fully deep marshalled yaml.
func ToYAMLMap(v map[string]interface{}) (map[string]interface{}, error) {
result := map[string]interface{}{}
tempData, err := ToYAML(v)