summaryrefslogtreecommitdiff
path: root/app/workers/build_success_worker.rb
blob: 1623d8f02b9d3d3b0b086c6991e4bc167ae7d37b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# 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

  ##
  # Deprecated:
  # As of 11.5, we started creating a deployment record when ci_builds record is created.
  # Therefore we no longer need to create a deployment, after a build succeeded.
  # We're leaving this code for the transition period, but we can remove this code in 11.6.
  def create_deployment(build)
    return if build.has_deployment?

    build.create_deployment.try do |deployment|
      deployment.succeed
    end
  end
end