Welcome to mirror list, hosted at ThFree Co, Russian Federation.

expire_build_artifacts_worker.rb « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ee57bd6dfe2772467829cea34302b1c28b3e7e15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

class ExpireBuildArtifactsWorker
  include ApplicationWorker
  include CronjobQueue # rubocop:disable Scalability/CronWorkerContext

  feature_category :continuous_integration

  def perform
    Ci::DestroyExpiredJobArtifactsService.new.execute
  end
end