debian-mirror-gitlab/lib/gitlab/ci/pipeline/chain/config/process.rb

62 lines
1.7 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
module Config
class Process < Chain::Base
include Chain::Helpers
def perform!
raise ArgumentError, 'missing config content' unless @command.config_content
2020-11-24 15:15:51 +05:30
result = ::Gitlab::Ci::YamlProcessor.new(
2019-12-26 22:10:19 +05:30
@command.config_content, {
project: project,
2021-10-27 15:23:28 +05:30
source_ref_path: @pipeline.source_ref_path,
2019-12-26 22:10:19 +05:30
sha: @pipeline.sha,
2021-06-08 01:23:25 +05:30
source: @pipeline.source,
2020-04-08 14:13:33 +05:30
user: current_user,
parent_pipeline: parent_pipeline
2019-12-26 22:10:19 +05:30
}
2020-11-24 15:15:51 +05:30
).execute
add_warnings_to_pipeline(result.warnings)
2020-07-28 23:09:34 +05:30
2020-11-24 15:15:51 +05:30
if result.valid?
@command.yaml_processor_result = result
else
error(result.errors.first, config_error: true)
end
2020-07-28 23:09:34 +05:30
2021-01-03 14:25:43 +05:30
@pipeline.merged_yaml = result.merged_yaml
2021-06-08 01:23:25 +05:30
rescue StandardError => ex
2020-01-01 13:55:28 +05:30
Gitlab::ErrorTracking.track_exception(ex,
2019-12-26 22:10:19 +05:30
project_id: project.id,
sha: @pipeline.sha
2020-01-01 13:55:28 +05:30
)
2019-12-26 22:10:19 +05:30
error("Undefined error (#{Labkit::Correlation::CorrelationId.current_id})",
config_error: true)
end
def break?
@pipeline.errors.any? || @pipeline.persisted?
end
2020-07-28 23:09:34 +05:30
private
def add_warnings_to_pipeline(warnings)
return unless warnings.present?
warnings.each { |message| warning(message) }
end
2019-12-26 22:10:19 +05:30
end
end
end
end
end
end