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
0
Merge Requests
0
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
Tatuya Kamada
gitlab-ce
Commits
4a1edae3
Commit
4a1edae3
authored
Jul 20, 2016
by
Lin Jen-Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use one query. Feedback:
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5347#note_13199055
parent
fcdfeba9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
7 deletions
+2
-7
app/models/project.rb
app/models/project.rb
+2
-7
No files found.
app/models/project.rb
View file @
4a1edae3
...
...
@@ -431,13 +431,8 @@ class Project < ActiveRecord::Base
# ref can't be HEAD, can only be branch/tag name or SHA
def
latest_successful_builds_for
(
ref
=
default_branch
)
latest_successful_pipeline
=
pipelines
.
latest_successful_for
(
ref
).
first
if
latest_successful_pipeline
latest_successful_pipeline
.
builds
.
with_artifacts
.
latest
else
builds
.
none
end
pipeline
=
pipelines
.
latest_successful_for
(
ref
)
builds
.
where
(
pipeline:
pipeline
).
latest
.
with_artifacts
end
def
merge_base_commit
(
first_commit_id
,
second_commit_id
)
...
...
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