debian-mirror-gitlab/app/workers/build_success_worker.rb
2021-11-11 11:23:49 +05:30

27 lines
610 B
Ruby

# frozen_string_literal: true
class BuildSuccessWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
data_consistency :always
sidekiq_options retry: 3
include PipelineQueue
queue_namespace :pipeline_processing
urgency :high
# rubocop: disable CodeReuse/ActiveRecord
def perform(build_id)
Ci::Build.find_by(id: build_id).try do |build|
stop_environment(build) if build.stops_environment?
end
end
# rubocop: enable CodeReuse/ActiveRecord
private
def stop_environment(build)
build.persisted_environment.fire_state_event(:stop)
end
end