Skip to content
Snippets Groups Projects
Commit 59e1e971 authored by Shinya Maeda's avatar Shinya Maeda
Browse files

Add build_relations method in Chain::Populate

parent 09122f93
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -6,9 +6,6 @@ module Gitlab
include Chain::Helpers
 
def perform!
# Allocate next IID outside of transaction
pipeline.ensure_project_iid!
::Ci::Pipeline.transaction do
pipeline.save!
 
Loading
Loading
Loading
Loading
@@ -8,10 +8,7 @@ module Gitlab
PopulateError = Class.new(StandardError)
 
def perform!
##
# Populate pipeline with block argument of CreatePipelineService#execute.
#
@command.seeds_block&.call(pipeline)
build_relations
 
##
# Populate pipeline with all stages, and stages with builds.
Loading
Loading
@@ -34,6 +31,18 @@ module Gitlab
def break?
pipeline.errors.any?
end
private
def build_relations
##
# Populate pipeline with block argument of CreatePipelineService#execute.
#
@command.seeds_block&.call(pipeline)
# Allocate next IID. This operation must be outside of transactions of pipeline creations.
pipeline.ensure_project_iid!
end
end
end
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment