@@ -457,13 +457,48 @@ func (s *Scheduler) SchedulePipeline(p *gaia.Pipeline, args []*gaia.Argument) (*
457
457
return & run , s .storeService .PipelinePutRun (& run )
458
458
}
459
459
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
+
460
470
// executeJob executes a job and informs via triggerSave that the job can be saved to the store.
461
471
// 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 ) {
463
473
// Set Job to running and trigger save
464
474
j .Status = gaia .JobRunning
465
475
triggerSave <- j
466
476
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
+
467
502
// Execute job
468
503
if err := pS .Execute (& j ); err != nil {
469
504
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) {
760
795
mw .Replace (* wl )
761
796
762
797
// Start execution
763
- go executeJob (* j , pS , triggerSave )
798
+ go executeJob (* j , pS , triggerSave , r )
764
799
}
765
800
}
766
801
}
0 commit comments