debian-mirror-gitlab/lib/gitlab/ci/pipeline/seed/pipeline.rb

52 lines
1.2 KiB
Ruby
Raw Normal View History

2021-02-22 17:27:13 +05:30
# frozen_string_literal: true
module Gitlab
module Ci
module Pipeline
module Seed
class Pipeline
include Gitlab::Utils::StrongMemoize
2021-04-29 21:17:54 +05:30
def initialize(context, stages_attributes)
@context = context
2021-02-22 17:27:13 +05:30
@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
private
def stage_seeds
strong_memoize(:stage_seeds) do
seeds = @stages_attributes.inject([]) do |previous_stages, attributes|
2021-04-29 21:17:54 +05:30
seed = Gitlab::Ci::Pipeline::Seed::Stage.new(@context, attributes, previous_stages)
2021-02-22 17:27:13 +05:30
previous_stages + [seed]
end
seeds.select(&:included?)
end
end
end
end
end
end
end