summaryrefslogtreecommitdiff
path: root/app/workers/expire_build_artifacts_worker.rb
blob: 65d387f73ed4014d2f8b973c64f7eeb79709a3da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

class ExpireBuildArtifactsWorker # rubocop:disable Scalability/IdempotentWorker
  include ApplicationWorker

  data_consistency :always

  # rubocop:disable Scalability/CronWorkerContext
  # This worker does not perform work scoped to a context
  include CronjobQueue
  # rubocop:enable Scalability/CronWorkerContext

  feature_category :continuous_integration

  def perform
    service = Ci::JobArtifacts::DestroyAllExpiredService.new
    artifacts_count = service.execute
    log_extra_metadata_on_done(:destroyed_job_artifacts_count, artifacts_count)
  end
end