mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-20 14:11:11 +00:00
9 lines
166 B
Ruby
9 lines
166 B
Ruby
class BuildCoverageWorker
|
|
include ApplicationWorker
|
|
include PipelineQueue
|
|
|
|
def perform(build_id)
|
|
Ci::Build.find_by(id: build_id)&.update_coverage
|
|
end
|
|
end
|