summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/pipeline/chain/sequence.rb
blob: 015f2988327cb2239b3829256e69ddc5773e5cd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
module Gitlab
  module Ci
    module Pipeline
      module Chain
        class Sequence
          def initialize(pipeline, command, sequence)
            @pipeline = pipeline
            @completed = []

            @sequence = sequence.map do |chain|
              chain.new(pipeline, command)
            end
          end

          def build!
            @sequence.each do |step|
              step.perform!

              break if step.break?

              @completed << step
            end

            @pipeline.tap do
              yield @pipeline, self if block_given?
            end
          end

          def complete?
            @completed.size == @sequence.size
          end
        end
      end
    end
  end
end