gitlab-org--gitlab-foss/app/workers/build_success_worker.rb
Yorick Peterse 2039c8280d
Disable existing offenses for the CodeReuse cops
This whitelists all existing offenses for the various CodeReuse cops, of
which most are triggered by the CodeReuse/ActiveRecord cop.
2018-09-11 17:32:00 +02:00

22 lines
482 B
Ruby

# frozen_string_literal: true
class BuildSuccessWorker
include ApplicationWorker
include PipelineQueue
queue_namespace :pipeline_processing
# rubocop: disable CodeReuse/ActiveRecord
def perform(build_id)
Ci::Build.find_by(id: build_id).try do |build|
create_deployment(build) if build.has_environment?
end
end
# rubocop: enable CodeReuse/ActiveRecord
private
def create_deployment(build)
CreateDeploymentService.new(build).execute
end
end