2039c8280d
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
17 lines
476 B
Ruby
17 lines
476 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ExpireBuildArtifactsWorker
|
|
include ApplicationWorker
|
|
include CronjobQueue
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
def perform
|
|
Rails.logger.info 'Scheduling removal of build artifacts'
|
|
|
|
build_ids = Ci::Build.with_expired_artifacts.pluck(:id)
|
|
build_ids = build_ids.map { |build_id| [build_id] }
|
|
|
|
ExpireBuildInstanceArtifactsWorker.bulk_perform_async(build_ids)
|
|
end
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
end
|