summaryrefslogtreecommitdiff
path: root/app/workers/build_finished_worker.rb
blob: b5ed8d607b350ce4bd2ba324565739fbbd4839e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class BuildFinishedWorker
  include ApplicationWorker
  include PipelineQueue

  queue_namespace :pipeline_processing

  def perform(build_id)
    Ci::Build.find_by(id: build_id).try do |build|
      # We execute that in sync as this access the files in order to access local file, and reduce IO
      BuildTraceSectionsWorker.new.perform(build.id)
      BuildCoverageWorker.new.perform(build.id)

      # 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)
    end
  end
end