debian-mirror-gitlab/app/workers/pipeline_process_worker.rb

24 lines
685 B
Ruby
Raw Normal View History

2018-11-08 19:23:39 +05:30
# frozen_string_literal: true
2020-04-08 14:13:33 +05:30
class PipelineProcessWorker # rubocop:disable Scalability/IdempotentWorker
2018-03-17 18:26:18 +05:30
include ApplicationWorker
2016-11-03 12:29:30 +05:30
include PipelineQueue
2018-03-17 18:26:18 +05:30
queue_namespace :pipeline_processing
2019-12-21 20:55:43 +05:30
feature_category :continuous_integration
2020-04-08 14:13:33 +05:30
urgency :high
2020-06-23 00:09:42 +05:30
loggable_arguments 1
2018-03-17 18:26:18 +05:30
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2020-10-24 23:57:45 +05:30
# `_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)
2019-10-12 21:52:04 +05:30
Ci::Pipeline.find_by(id: pipeline_id).try do |pipeline|
2020-01-01 13:55:28 +05:30
Ci::ProcessPipelineService
.new(pipeline)
2020-10-24 23:57:45 +05:30
.execute
2019-10-12 21:52:04 +05:30
end
2016-11-03 12:29:30 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2016-11-03 12:29:30 +05:30
end