gitlab-org--gitlab-foss/app/workers/build_success_worker.rb
Lin Jen-Shin a0990ff356 Simplify CreateDeploymentService so that it uses
methods directly from job, avoid duplicating the works.
2017-06-01 21:01:32 +08:00

16 lines
319 B
Ruby

class BuildSuccessWorker
include Sidekiq::Worker
include BuildQueue
def perform(build_id)
Ci::Build.find_by(id: build_id).try do |build|
create_deployment(build) if build.has_environment?
end
end
private
def create_deployment(build)
CreateDeploymentService.new(build).execute
end
end