debian-mirror-gitlab/lib/gitlab/ci/pipeline/chain/populate.rb

47 lines
1.2 KiB
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2018-05-09 12:01:36 +05:30
module Gitlab
module Ci
module Pipeline
module Chain
class Populate < Chain::Base
include Chain::Helpers
PopulateError = Class.new(StandardError)
def perform!
2018-11-08 19:23:39 +05:30
# Allocate next IID. This operation must be outside of transactions of pipeline creations.
pipeline.ensure_project_iid!
2018-05-09 12:01:36 +05:30
##
# Populate pipeline with block argument of CreatePipelineService#execute.
#
@command.seeds_block&.call(pipeline)
##
2018-10-15 14:42:47 +05:30
# Populate pipeline with all stages, and stages with builds.
2018-05-09 12:01:36 +05:30
#
pipeline.stage_seeds.each do |stage|
pipeline.stages << stage.to_resource
end
if pipeline.stages.none?
return error('No stages / jobs for this pipeline.')
end
if pipeline.invalid?
return error('Failed to build the pipeline!')
end
raise Populate::PopulateError if pipeline.persisted?
end
def break?
pipeline.errors.any?
end
end
end
end
end
end