Reduce pipeline chain life span to minimize side effects

This commit is contained in:
Grzegorz Bizon 2017-12-04 13:56:32 +01:00
parent 87b33961d7
commit 9737f582a1
1 changed files with 6 additions and 7 deletions

View File

@ -5,20 +5,19 @@ module Gitlab
class Sequence
def initialize(pipeline, command, sequence)
@pipeline = pipeline
@command = command
@sequence = sequence
@completed = []
@sequence = sequence.map do |chain|
chain.new(pipeline, command)
end
end
def build!
@sequence.each do |step|
step.perform!
@sequence.each do |chain|
step = chain.new(@pipeline, @command)
step.perform!
break if step.break?
@completed << step
@completed.push(step)
end
@pipeline.tap do