Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
6967b35a0353
Commit
785d5c8e
authored
Nov 24, 2016
by
Grzegorz Bizon
Browse files
Create pipeline along with builds in the transation
parent
ac6582fab10d
Changes
2
Hide whitespace changes
Inline
Side-by-side
app/services/ci/create_pipeline_service.rb
View file @
6967b35a
...
...
@@ -45,9 +45,15 @@ def execute(ignore_skip_ci: false, save_on_errors: true, trigger_request: nil)
return
error
(
'No builds for this pipeline.'
)
end
pipeline
.
save
pipeline
.
process!
pipeline
Ci
::
Pipeline
.
transaction
do
pipeline
.
save
Ci
::
CreatePipelineBuildsService
.
new
(
project
,
current_user
)
.
execute
(
pipeline
)
end
pipeline
.
tap
(
&
:process!
)
end
private
...
...
app/services/ci/process_pipeline_service.rb
View file @
6967b35a
...
...
@@ -5,11 +5,6 @@ class ProcessPipelineService < BaseService
def
execute
(
pipeline
)
@pipeline
=
pipeline
# This method will ensure that our pipeline does have all builds for all stages created
if
created_builds
.
empty?
create_builds!
end
new_builds
=
stage_indexes_of_created_builds
.
map
do
|
index
|
process_stage
(
index
)
...
...
@@ -22,10 +17,6 @@ def execute(pipeline)
private
def
create_builds!
Ci
::
CreatePipelineBuildsService
.
new
(
project
,
current_user
).
execute
(
pipeline
)
end
def
process_stage
(
index
)
current_status
=
status_for_prior_stages
(
index
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment