Skip to content

Commit c07f0b7

Browse files
author
Gergely Brautigam
committed
Working output passing for common jobs.
1 parent 98f23e8 commit c07f0b7

File tree

1 file changed

+37
-2
lines changed

1 file changed

+37
-2
lines changed

workers/scheduler/scheduler.go

+37-2
Original file line numberDiff line numberDiff line change
@@ -457,13 +457,48 @@ func (s *Scheduler) SchedulePipeline(p *gaia.Pipeline, args []*gaia.Argument) (*
457457
return &run, s.storeService.PipelinePutRun(&run)
458458
}
459459

460+
func getDependency(s string, r *gaia.PipelineRun) *gaia.Job {
461+
for _, p := range r.Jobs {
462+
if p.Title == s {
463+
return p
464+
}
465+
}
466+
467+
return nil
468+
}
469+
460470
// executeJob executes a job and informs via triggerSave that the job can be saved to the store.
461471
// This method is blocking.
462-
func executeJob(j gaia.Job, pS plugin.Plugin, triggerSave chan gaia.Job) {
472+
func executeJob(j gaia.Job, pS plugin.Plugin, triggerSave chan gaia.Job, run *gaia.PipelineRun) {
463473
// Set Job to running and trigger save
464474
j.Status = gaia.JobRunning
465475
triggerSave <- j
466476

477+
// Load in the jobs previous dependencies and look for possible output.
478+
// For some reason the job's dependencies are not up to date here.
479+
// Need to get the run information from the PipelineRun.
480+
//log.Println("depends On: ", j.DependsOn)
481+
for _, dependingJob := range j.DependsOn {
482+
dep := getDependency(dependingJob.Title, run)
483+
if dep == nil {
484+
continue
485+
}
486+
487+
// look for output
488+
if dep.Outs == nil {
489+
continue
490+
}
491+
492+
// Set up any arguments which might match which are a dependency to this job.
493+
for _, out := range dep.Outs {
494+
for _, arg := range j.Args {
495+
if arg.Key == out.Key {
496+
arg.Value = out.Value
497+
}
498+
}
499+
}
500+
}
501+
467502
// Execute job
468503
if err := pS.Execute(&j); err != nil {
469504
gaia.Cfg.Logger.Debug("error during job execution", "error", err.Error(), "job", j)
@@ -760,7 +795,7 @@ func (s *Scheduler) executeScheduler(r *gaia.PipelineRun, pS plugin.Plugin) {
760795
mw.Replace(*wl)
761796

762797
// Start execution
763-
go executeJob(*j, pS, triggerSave)
798+
go executeJob(*j, pS, triggerSave, r)
764799
}
765800
}
766801
}

0 commit comments

Comments
 (0)