gitlab-org--gitlab-foss/app/services/ci/process_pipeline_service.rb

90 lines
2.0 KiB
Ruby
Raw Normal View History

module Ci
class ProcessPipelineService < BaseService
attr_reader :pipeline
def execute(pipeline)
@pipeline = pipeline
ensure_created_builds! # TODO, remove me in 9.0
2016-10-20 07:33:44 +00:00
new_builds =
stage_indexes_of_created_builds.map do |index|
process_stage(index)
end
2016-08-29 14:47:31 +00:00
2016-10-20 07:33:44 +00:00
@pipeline.update_status
2016-10-20 07:33:44 +00:00
new_builds.flatten.any?
end
private
def process_stage(index)
current_status = status_for_prior_stages(index)
2016-10-20 07:33:44 +00:00
if HasStatus::COMPLETED_STATUSES.include?(current_status)
created_builds_in_stage(index).select do |build|
2016-10-27 11:34:09 +00:00
Gitlab::OptimisticLocking.retry_lock(build) do |subject|
process_build(subject, current_status)
2016-10-20 07:33:44 +00:00
end
end
end
end
def process_build(build, current_status)
if valid_statuses_for_when(build.when).include?(current_status)
2016-10-26 21:03:58 +00:00
build.enqueue
true
elsif build.barrier?
2017-02-28 15:48:39 +00:00
build.block
false
else
2016-10-26 21:03:58 +00:00
build.skip
false
end
end
def valid_statuses_for_when(value)
case value
when 'on_success'
%w[success skipped]
when 'on_failure'
%w[failed]
when 'always'
%w[success failed skipped]
else
[]
end
end
def status_for_prior_stages(index)
pipeline.builds.where('stage_idx < ?', index).latest.status || 'success'
end
def stage_indexes_of_created_builds
created_builds.order(:stage_idx).pluck('distinct stage_idx')
end
def created_builds_in_stage(index)
created_builds.where(stage_idx: index)
end
def created_builds
pipeline.builds.created
end
# This method is DEPRECATED and should be removed in 9.0.
#
# We need it to maintain backwards compatibility with previous versions
# when builds were not created within one transaction with the pipeline.
#
def ensure_created_builds!
return if created_builds.any?
Ci::CreatePipelineBuildsService
.new(project, current_user)
.execute(pipeline)
end
end
end