23 lines
685 B
Ruby
23 lines
685 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PipelineProcessWorker # rubocop:disable Scalability/IdempotentWorker
|
|
include ApplicationWorker
|
|
include PipelineQueue
|
|
|
|
queue_namespace :pipeline_processing
|
|
feature_category :continuous_integration
|
|
urgency :high
|
|
loggable_arguments 1
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
# `_build_ids` is deprecated and will be removed in 14.0
|
|
# See: https://gitlab.com/gitlab-org/gitlab/-/issues/232806
|
|
def perform(pipeline_id, _build_ids = nil)
|
|
Ci::Pipeline.find_by(id: pipeline_id).try do |pipeline|
|
|
Ci::ProcessPipelineService
|
|
.new(pipeline)
|
|
.execute
|
|
end
|
|
end
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
end
|