2020-10-24 23:57:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Ci
|
|
|
|
module Pipeline
|
|
|
|
module Chain
|
|
|
|
class CancelPendingPipelines < Chain::Base
|
|
|
|
include Chain::Helpers
|
|
|
|
|
2021-11-11 11:23:49 +05:30
|
|
|
BATCH_SIZE = 25
|
|
|
|
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2020-10-24 23:57:45 +05:30
|
|
|
def perform!
|
|
|
|
return unless project.auto_cancel_pending_pipelines?
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
Gitlab::OptimisticLocking.retry_lock(auto_cancelable_pipelines, name: 'cancel_pending_pipelines') do |cancelables|
|
2021-11-11 11:23:49 +05:30
|
|
|
cancelables.select(:id).each_batch(of: BATCH_SIZE) do |cancelables_batch|
|
|
|
|
auto_cancel_interruptible_pipelines(cancelables_batch.ids)
|
2020-10-24 23:57:45 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2021-11-11 11:23:49 +05:30
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2020-10-24 23:57:45 +05:30
|
|
|
|
|
|
|
def break?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def auto_cancelable_pipelines
|
2021-11-11 11:23:49 +05:30
|
|
|
project.all_pipelines.created_after(1.week.ago)
|
|
|
|
.ci_and_parent_sources
|
|
|
|
.for_ref(pipeline.ref)
|
|
|
|
.id_not_in(pipeline.same_family_pipeline_ids)
|
|
|
|
.where_not_sha(project.commit(pipeline.ref).try(:id))
|
2020-10-24 23:57:45 +05:30
|
|
|
.alive_or_scheduled
|
2021-11-11 11:23:49 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def auto_cancel_interruptible_pipelines(pipeline_ids)
|
|
|
|
::Ci::Pipeline
|
|
|
|
.id_in(pipeline_ids)
|
2020-10-24 23:57:45 +05:30
|
|
|
.with_only_interruptible_builds
|
2021-11-11 11:23:49 +05:30
|
|
|
.each { |cancelable| cancelable.auto_cancel_running(pipeline) }
|
2020-10-24 23:57:45 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|