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

23 lines
596 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 CreatePipelineWorker # rubocop:disable Scalability/IdempotentWorker
2018-03-17 18:26:18 +05:30
include ApplicationWorker
include PipelineQueue
queue_namespace :pipeline_creation
2019-12-21 20:55:43 +05:30
feature_category :continuous_integration
2020-04-08 14:13:33 +05:30
urgency :high
2019-12-26 22:10:19 +05:30
worker_resource_boundary :cpu
2020-06-23 00:09:42 +05:30
loggable_arguments 2, 3, 4
2018-03-17 18:26:18 +05:30
def perform(project_id, user_id, ref, source, params = {})
project = Project.find(project_id)
user = User.find(user_id)
params = params.deep_symbolize_keys
Ci::CreatePipelineService
.new(project, user, ref: ref)
.execute(source, **params)
end
end