summaryrefslogtreecommitdiff
path: root/app/workers/build_success_worker.rb
blob: 9a865fea621318e842bd5cfaa7a868ab08d33ba6 (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
32
33
34
35
36
# 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?
      stop_environment(build) if build.stops_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)
    build.create_deployment.try do |deployment|
      deployment.succeed
    end
  end

  ##
  # TODO: This should be processed in DeploymentSuccessWorker once we started storing `action` value in `deployments` records
  def stop_environment(build)
    build.persisted_environment.fire_state_event(:stop)
  end
end