debian-mirror-gitlab/app/workers/build_success_worker.rb

37 lines
1.1 KiB
Ruby
Raw Normal View History

2018-11-08 19:23:39 +05:30
# frozen_string_literal: true
2016-11-03 12:29:30 +05:30
class BuildSuccessWorker
2018-03-17 18:26:18 +05:30
include ApplicationWorker
include PipelineQueue
queue_namespace :pipeline_processing
2016-11-03 12:29:30 +05:30
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2016-11-03 12:29:30 +05:30
def perform(build_id)
Ci::Build.find_by(id: build_id).try do |build|
2017-08-17 22:00:37 +05:30
create_deployment(build) if build.has_environment?
2018-12-13 13:39:08 +05:30
stop_environment(build) if build.stops_environment?
2016-11-03 12:29:30 +05:30
end
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2016-11-03 12:29:30 +05:30
private
2018-12-13 13:39:08 +05:30
##
# 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.
2016-11-03 12:29:30 +05:30
def create_deployment(build)
2018-12-13 13:39:08 +05:30
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)
2016-11-03 12:29:30 +05:30
end
end