2018-06-27 03:23:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-02-19 13:09:10 -05:00
|
|
|
class PipelineProcessWorker # rubocop:disable Scalability/IdempotentWorker
|
2017-11-28 11:08:30 -05:00
|
|
|
include ApplicationWorker
|
2016-10-21 12:13:41 -04:00
|
|
|
include PipelineQueue
|
2016-09-19 09:03:51 -04:00
|
|
|
|
2017-11-28 11:16:50 -05:00
|
|
|
queue_namespace :pipeline_processing
|
2019-10-18 07:11:44 -04:00
|
|
|
feature_category :continuous_integration
|
2020-03-02 13:07:42 -05:00
|
|
|
urgency :high
|
2017-08-21 08:02:20 -04:00
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2019-08-02 13:31:01 -04:00
|
|
|
def perform(pipeline_id, build_ids = nil)
|
|
|
|
Ci::Pipeline.find_by(id: pipeline_id).try do |pipeline|
|
2019-11-19 07:06:00 -05:00
|
|
|
Ci::ProcessPipelineService
|
|
|
|
.new(pipeline)
|
|
|
|
.execute(build_ids)
|
2019-08-02 13:31:01 -04:00
|
|
|
end
|
2016-09-19 09:03:51 -04:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2016-09-19 09:03:51 -04:00
|
|
|
end
|