2016-11-03 12:29:30 +05:30
|
|
|
class BuildFinishedWorker
|
2018-03-17 18:26:18 +05:30
|
|
|
include ApplicationWorker
|
|
|
|
include PipelineQueue
|
|
|
|
|
|
|
|
queue_namespace :pipeline_processing
|
2016-11-03 12:29:30 +05:30
|
|
|
|
|
|
|
def perform(build_id)
|
|
|
|
Ci::Build.find_by(id: build_id).try do |build|
|
2018-03-17 18:26:18 +05:30
|
|
|
# We execute that in sync as this access the files in order to access local file, and reduce IO
|
|
|
|
BuildTraceSectionsWorker.new.perform(build.id)
|
2016-11-03 12:29:30 +05:30
|
|
|
BuildCoverageWorker.new.perform(build.id)
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
# We execute that async as this are two indepentent operations that can be executed after TraceSections and Coverage
|
|
|
|
BuildHooksWorker.perform_async(build.id)
|
|
|
|
CreateTraceArtifactWorker.perform_async(build.id)
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|