mirror of
https://github.com/go-task/task.git
synced 2024-12-12 10:45:49 +02:00
74f5cf8f29
Fixes #647 This allows CI systems that support grouping (such as with [GitHub Actions's `::group::` command](https://docs.github.com/en/actions/learn-github-actions/workflow-commands-for-github-actions#grouping-log-lines) and [Azure Devops](https://docs.microsoft.com/en-us/azure/devops/pipelines/scripts/logging-commands?view=azure-devops&tabs=bash#formatting-commands)) to collapse all of the logs for a single task, to improve readability of logs ## Example The following Taskfile ``` # Taskfile.yml version: 3 output: group: begin: "::group::{{ .TASK }}" end: "::endgroup::" tasks: default: cmds: - "echo 'Hello, World!'" ``` Results in the following output ```bash $ task task: [default] echo 'Hello, World!' ::group::default Hello, World! ::endgroup:: ``` See [this GitHub Actions job](https://github.com/janslow/task/runs/4811059609?check_suite_focus=true) for a full example <img width="771" alt="image" src="https://user-images.githubusercontent.com/1253367/149429832-6cb0c1b5-0758-442e-9375-c4daa65771bc.png"> <img width="394" alt="image" src="https://user-images.githubusercontent.com/1253367/149429851-1d5d2ab5-9095-4795-9b57-f91750720d40.png">
67 lines
1.6 KiB
Go
67 lines
1.6 KiB
Go
package taskfile
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
// NamespaceSeparator contains the character that separates namescapes
|
|
const NamespaceSeparator = ":"
|
|
|
|
// Merge merges the second Taskfile into the first
|
|
func Merge(t1, t2 *Taskfile, namespaces ...string) error {
|
|
if t1.Version != t2.Version {
|
|
return fmt.Errorf(`Taskfiles versions should match. First is "%s" but second is "%s"`, t1.Version, t2.Version)
|
|
}
|
|
|
|
if t2.Expansions != 0 && t2.Expansions != 2 {
|
|
t1.Expansions = t2.Expansions
|
|
}
|
|
if t2.Output.IsSet() {
|
|
t1.Output = t2.Output
|
|
}
|
|
|
|
if t1.Includes == nil {
|
|
t1.Includes = &IncludedTaskfiles{}
|
|
}
|
|
t1.Includes.Merge(t2.Includes)
|
|
|
|
if t1.Vars == nil {
|
|
t1.Vars = &Vars{}
|
|
}
|
|
if t1.Env == nil {
|
|
t1.Env = &Vars{}
|
|
}
|
|
t1.Vars.Merge(t2.Vars)
|
|
t1.Env.Merge(t2.Env)
|
|
|
|
if t1.Tasks == nil {
|
|
t1.Tasks = make(Tasks)
|
|
}
|
|
for k, v := range t2.Tasks {
|
|
// FIXME(@andreynering): Refactor this block, otherwise we can
|
|
// have serious side-effects in the future, since we're editing
|
|
// the original references instead of deep copying them.
|
|
|
|
t1.Tasks[taskNameWithNamespace(k, namespaces...)] = v
|
|
|
|
for _, dep := range v.Deps {
|
|
dep.Task = taskNameWithNamespace(dep.Task, namespaces...)
|
|
}
|
|
for _, cmd := range v.Cmds {
|
|
if cmd != nil && cmd.Task != "" {
|
|
cmd.Task = taskNameWithNamespace(cmd.Task, namespaces...)
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func taskNameWithNamespace(taskName string, namespaces ...string) string {
|
|
if strings.HasPrefix(taskName, ":") {
|
|
return strings.TrimPrefix(taskName, ":")
|
|
}
|
|
return strings.Join(append(namespaces, taskName), NamespaceSeparator)
|
|
}
|