Class: Gitlab::Ci::Pipeline::Chain::Build::Associations
Instance Attribute Summary
#command, #config, #pipeline
Instance Method Summary
collapse
#initialize
Instance Method Details
#break? ⇒ Boolean
20
21
22
|
# File 'lib/gitlab/ci/pipeline/chain/build/associations.rb', line 20
def break?
false
end
|
9
10
11
12
13
14
15
16
17
18
|
# File 'lib/gitlab/ci/pipeline/chain/build/associations.rb', line 9
def perform!
return unless @command.bridge
@pipeline.build_source_pipeline(
source_pipeline: @command.bridge.pipeline,
source_project: @command.bridge.project,
source_bridge: @command.bridge,
project: @command.project
)
end
|