mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-20 14:11:11 +00:00
19 lines
357 B
Ruby
19 lines
357 B
Ruby
class BuildSuccessWorker
|
|
include ApplicationWorker
|
|
include PipelineQueue
|
|
|
|
enqueue_in group: :processing
|
|
|
|
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
|