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

71 lines
2.2 KiB
Ruby
Raw Normal View History

2019-12-26 22:10:19 +05:30
# frozen_string_literal: true
module Gitlab
module Ci
module Pipeline
module Chain
class Seed < Chain::Base
include Chain::Helpers
include Gitlab::Utils::StrongMemoize
def perform!
2020-11-24 15:15:51 +05:30
raise ArgumentError, 'missing YAML processor result' unless @command.yaml_processor_result
2021-09-30 23:02:18 +05:30
raise ArgumentError, 'missing workflow rules result' unless @command.workflow_rules_result
2021-04-29 21:17:54 +05:30
2019-12-26 22:10:19 +05:30
# Allocate next IID. This operation must be outside of transactions of pipeline creations.
2022-01-26 12:08:38 +05:30
logger.instrument(:pipeline_allocate_seed_attributes) do
pipeline.ensure_project_iid!
pipeline.ensure_ci_ref!
end
2019-12-26 22:10:19 +05:30
# Protect the pipeline. This is assigned in Populate instead of
# Build to prevent erroring out on ambiguous refs.
pipeline.protected = @command.protected_ref?
##
# Gather all runtime build/stage errors
#
2022-01-26 12:08:38 +05:30
seed_errors = logger.instrument(:pipeline_seed_evaluation) do
pipeline_seed.errors
end
if seed_errors
return error(seed_errors.join("\n"), config_error: true)
2019-12-26 22:10:19 +05:30
end
2021-02-22 17:27:13 +05:30
@command.pipeline_seed = pipeline_seed
2019-12-26 22:10:19 +05:30
end
def break?
pipeline.errors.any?
end
private
2021-02-22 17:27:13 +05:30
def pipeline_seed
strong_memoize(:pipeline_seed) do
2022-01-26 12:08:38 +05:30
logger.instrument(:pipeline_seed_initialization) do
stages_attributes = @command.yaml_processor_result.stages_attributes
Gitlab::Ci::Pipeline::Seed::Pipeline.new(context, stages_attributes)
end
2021-04-29 21:17:54 +05:30
end
end
def context
Gitlab::Ci::Pipeline::Seed::Context.new(pipeline, root_variables: root_variables)
end
def root_variables
2022-01-26 12:08:38 +05:30
logger.instrument(:pipeline_seed_merge_variables) do
::Gitlab::Ci::Variables::Helpers.merge_variables(
@command.yaml_processor_result.root_variables, @command.workflow_rules_result.variables
)
end
2019-12-26 22:10:19 +05:30
end
end
end
end
end
end