Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pipeline.rb « seed « pipeline « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 57ad2546f1c4202ccdde6111c47e6dd4f83f0cb8 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# frozen_string_literal: true

module Gitlab
  module Ci
    module Pipeline
      module Seed
        class Pipeline
          include Gitlab::Utils::StrongMemoize

          def initialize(context, stages_attributes)
            @context = context
            @stages_attributes = stages_attributes
          end

          def errors
            stage_seeds.flat_map(&:errors).compact.presence
          end

          def stages
            stage_seeds.map(&:to_resource)
          end

          def size
            stage_seeds.sum(&:size)
          end

          def deployments_count
            stage_seeds.sum do |stage_seed|
              stage_seed.seeds.count do |build_seed|
                build_seed.attributes[:environment].present?
              end
            end
          end

          def root_variables
            @context.root_variables
          end

          private

          delegate :logger, to: :@context

          def stage_seeds
            logger.instrument(:pipeline_seed_stage_seeds) do
              seeds = @stages_attributes.inject([]) do |previous_stages, attributes|
                seed = Gitlab::Ci::Pipeline::Seed::Stage.new(@context, attributes, previous_stages)
                previous_stages + [seed]
              end

              seeds.select(&:included?)
            end
          end
          strong_memoize_attr :stage_seeds
        end
      end
    end
  end
end