debian-mirror-gitlab/lib/gitlab/ci/pipeline/seed/pipeline.rb
2023-03-04 22:38:38 +05:30

58 lines
1.4 KiB
Ruby

# 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