mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-20 13:09:59 +00:00
22 lines
522 B
Ruby
22 lines
522 B
Ruby
# frozen_string_literal: true
|
|
|
|
class BuildHooksWorker # rubocop:disable Scalability/IdempotentWorker
|
|
include ApplicationWorker
|
|
|
|
sidekiq_options retry: 3
|
|
include PipelineQueue
|
|
|
|
queue_namespace :pipeline_hooks
|
|
feature_category :continuous_integration
|
|
urgency :high
|
|
data_consistency :delayed
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
def perform(build_id)
|
|
Ci::Build.includes({ runner: :tags })
|
|
.find_by_id(build_id)
|
|
.try(:execute_hooks)
|
|
end
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
end
|