Lines Matching refs:target
40 for _, target := range config.DiffTargets {
41 …fmt.Printf("Processing differential from %s to %s\n", target.Upstream.Branch, target.Downstream.Br…
43 commitCSV, projectCSV, err := runPyScript(config, target)
47 err = TransferScriptOutputToDownstream(config, target, projectCSV, commitCSV, commonManifest)
99 func setupCommand(pyScript string, config ent.ApplicationConfig, target ent.DiffTarget) *exec.Cmd {
104 target.Downstream.URL,
106 target.Downstream.Branch,
108 target.Upstream.URL,
110 target.Upstream.Branch,
116 func runPyScript(config ent.ApplicationConfig, target ent.DiffTarget) (projectCSV string, commitCSV…
122 err = diffTarget(pyScript, config, target)
134 func diffTarget(pyScript string, config ent.ApplicationConfig, target ent.DiffTarget) error {
136 cmd := setupCommand(pyScript, config, target)
153 target ent.DiffTarget,
173 return persistEntities(target, analyzedDiffRows, analyzedCommitRows)
211 func persistEntities(target ent.DiffTarget, diffRows []ent.AnalyzedDiffRow, commitRows []ent.Analyz…
216 mappedTarget, err := sourceRepo.DiffTargetToMapped(target)