2018-06-27 03:23:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-06-10 11:27:49 -04:00
|
|
|
class ExpireBuildArtifactsWorker
|
2017-11-28 11:08:30 -05:00
|
|
|
include ApplicationWorker
|
2016-10-21 12:13:41 -04:00
|
|
|
include CronjobQueue
|
2016-05-18 16:21:51 -04:00
|
|
|
|
|
|
|
def perform
|
2019-01-17 01:06:37 -05:00
|
|
|
if Feature.enabled?(:ci_new_expire_job_artifacts_service, default_enabled: true)
|
|
|
|
perform_efficient_artifacts_removal
|
|
|
|
else
|
|
|
|
perform_legacy_artifacts_removal
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def perform_efficient_artifacts_removal
|
|
|
|
Ci::DestroyExpiredJobArtifactsService.new.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
|
|
def perform_legacy_artifacts_removal
|
2016-10-07 05:11:02 -04:00
|
|
|
Rails.logger.info 'Scheduling removal of build artifacts'
|
2016-05-18 16:21:51 -04:00
|
|
|
|
2016-10-07 05:11:02 -04:00
|
|
|
build_ids = Ci::Build.with_expired_artifacts.pluck(:id)
|
|
|
|
build_ids = build_ids.map { |build_id| [build_id] }
|
|
|
|
|
2017-11-29 10:30:17 -05:00
|
|
|
ExpireBuildInstanceArtifactsWorker.bulk_perform_async(build_ids)
|
2016-05-18 16:21:51 -04:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2016-05-18 16:21:51 -04:00
|
|
|
end
|