Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
6ff14634
Commit
6ff14634
authored
Jun 15, 2016
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve creating builds by combining two loops
parent
a76cbe52
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
20 deletions
+16
-20
app/models/ci/pipeline.rb
app/models/ci/pipeline.rb
+16
-20
No files found.
app/models/ci/pipeline.rb
View file @
6ff14634
...
@@ -91,16 +91,11 @@ module Ci
...
@@ -91,16 +91,11 @@ module Ci
trigger_requests
.
any?
trigger_requests
.
any?
end
end
def
build_builds
(
user
,
trigger_request
=
nil
,
status
=
'success'
)
def
build_builds
(
user
,
trigger_request
=
nil
)
return
unless
config_processor
return
unless
config_processor
##
build_builds_for_stages
(
config_processor
.
stages
,
user
,
# Note that `Array#any?` implements a short circuit evaluation, so we
'success'
,
trigger_request
)
# build builds only for the first stage that has builds available.
#
config_processor
.
stages
.
any?
do
|
stage
|
build_builds_for_stage
(
stage
,
user
,
status
,
trigger_request
).
present?
end
end
end
def
create_builds
(
user
,
trigger_request
=
nil
)
def
create_builds
(
user
,
trigger_request
=
nil
)
...
@@ -122,17 +117,11 @@ module Ci
...
@@ -122,17 +117,11 @@ module Ci
prior_builds
=
latest_builds
.
where
.
not
(
stage:
next_stages
)
prior_builds
=
latest_builds
.
where
.
not
(
stage:
next_stages
)
prior_status
=
prior_builds
.
status
prior_status
=
prior_builds
.
status
##
# build builds for next stage that has builds available
# Create builds for next stages based.
# and save pipeline if we have builds
#
build_builds_for_stages
(
next_stages
,
build
.
user
,
prior_status
,
# Note that there is a short circult evaluation here.
build
.
trigger_request
)
&&
save
#
have_builds
=
next_stages
.
any?
do
|
stage
|
build_builds_for_stage
(
stage
,
build
.
user
,
prior_status
,
build
.
trigger_request
).
present?
end
save!
if
have_builds
end
end
def
retried
def
retried
...
@@ -179,8 +168,15 @@ module Ci
...
@@ -179,8 +168,15 @@ module Ci
private
private
def
build_builds_for_stage
(
stage
,
user
,
status
,
trigger_request
)
def
build_builds_for_stages
(
stages
,
user
,
status
,
trigger_request
)
CreateBuildsService
.
new
(
self
).
execute
(
stage
,
user
,
status
,
trigger_request
)
##
# Note that `Array#any?` implements a short circuit evaluation, so we
# build builds only for the first stage that has builds available.
#
stages
.
any?
do
|
stage
|
CreateBuildsService
.
new
(
self
)
.
execute
(
stage
,
user
,
status
,
trigger_request
).
present?
end
end
end
def
update_state
def
update_state
...
...
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