2018-11-08 19:23:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
class ExpireBuildArtifactsWorker
|
2018-03-17 18:26:18 +05:30
|
|
|
include ApplicationWorker
|
2016-11-03 12:29:30 +05:30
|
|
|
include CronjobQueue
|
2016-06-16 23:09:34 +05:30
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2016-06-16 23:09:34 +05:30
|
|
|
def perform
|
2016-11-03 12:29:30 +05:30
|
|
|
Rails.logger.info 'Scheduling removal of build artifacts'
|
2016-06-16 23:09:34 +05:30
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
build_ids = Ci::Build.with_expired_artifacts.pluck(:id)
|
|
|
|
build_ids = build_ids.map { |build_id| [build_id] }
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
ExpireBuildInstanceArtifactsWorker.bulk_perform_async(build_ids)
|
2016-06-16 23:09:34 +05:30
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2016-06-16 23:09:34 +05:30
|
|
|
end
|