2018-11-08 19:23:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
class BuildFinishedWorker # rubocop:disable Scalability/IdempotentWorker
|
2018-03-17 18:26:18 +05:30
|
|
|
include ApplicationWorker
|
|
|
|
include PipelineQueue
|
|
|
|
|
|
|
|
queue_namespace :pipeline_processing
|
2020-04-08 14:13:33 +05:30
|
|
|
urgency :high
|
2019-12-26 22:10:19 +05:30
|
|
|
worker_resource_boundary :cpu
|
2020-07-28 23:09:34 +05:30
|
|
|
tags :requires_disk_io
|
2016-11-03 12:29:30 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
ARCHIVE_TRACES_IN = 2.minutes.freeze
|
|
|
|
|
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|
|
2019-03-02 22:35:43 +05:30
|
|
|
process_build(build)
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2019-03-02 22:35:43 +05:30
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
# Processes a single CI build that has finished.
|
|
|
|
#
|
|
|
|
# This logic resides in a separate method so that EE can extend it more
|
|
|
|
# easily.
|
|
|
|
#
|
|
|
|
# @param [Ci::Build] build The build to process.
|
|
|
|
def process_build(build)
|
|
|
|
# We execute these in sync to reduce IO.
|
|
|
|
BuildTraceSectionsWorker.new.perform(build.id)
|
|
|
|
BuildCoverageWorker.new.perform(build.id)
|
2020-06-23 00:09:42 +05:30
|
|
|
Ci::BuildReportResultWorker.new.perform(build.id)
|
2019-03-02 22:35:43 +05:30
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
# TODO: As per https://gitlab.com/groups/gitlab-com/gl-infra/-/epics/194, it may be
|
|
|
|
# best to avoid creating more workers that we have no intention of calling async.
|
|
|
|
# Change the previous worker calls on top to also just call the service directly.
|
|
|
|
Ci::TestCasesService.new.execute(build)
|
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
# We execute these async as these are independent operations.
|
|
|
|
BuildHooksWorker.perform_async(build.id)
|
2020-03-13 15:44:24 +05:30
|
|
|
ExpirePipelineCacheWorker.perform_async(build.pipeline_id) if build.pipeline.cacheable?
|
2019-07-07 11:18:12 +05:30
|
|
|
ChatNotificationWorker.perform_async(build.id) if build.pipeline.chat?
|
2021-01-03 14:25:43 +05:30
|
|
|
|
|
|
|
##
|
|
|
|
# We want to delay sending a build trace to object storage operation to
|
|
|
|
# validate that this fixes a race condition between this and flushing live
|
|
|
|
# trace chunks and chunks being removed after consolidation and putting
|
|
|
|
# them into object storage archive.
|
|
|
|
#
|
|
|
|
# TODO This is temporary fix we should improve later, after we validate
|
|
|
|
# that this is indeed the culprit.
|
|
|
|
#
|
|
|
|
# See https://gitlab.com/gitlab-org/gitlab/-/issues/267112 for more
|
|
|
|
# details.
|
|
|
|
#
|
|
|
|
ArchiveTraceWorker.perform_in(ARCHIVE_TRACES_IN, build.id)
|
2019-03-02 22:35:43 +05:30
|
|
|
end
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
2019-12-04 20:38:33 +05:30
|
|
|
|
|
|
|
BuildFinishedWorker.prepend_if_ee('EE::BuildFinishedWorker')
|