BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
433ca739
Commit
433ca739
authored
Apr 17, 2016
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make some logic less twistable
parent
1c5b172a
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
10 deletions
+12
-10
CHANGELOG
CHANGELOG
+1
-0
statuseable.rb
app/models/concerns/statuseable.rb
+1
-1
index.html.haml
app/views/projects/builds/index.html.haml
+1
-1
_build.html.haml
app/views/projects/ci/builds/_build.html.haml
+1
-1
_generic_commit_status.html.haml
.../generic_commit_statuses/_generic_commit_status.html.haml
+7
-6
commits_spec.rb
spec/requests/api/commits_spec.rb
+1
-1
No files found.
CHANGELOG
View file @
433ca739
...
...
@@ -52,6 +52,7 @@ v 8.7.0 (unreleased)
- Hide `Create a group` help block when creating a new project in a group
- Implement 'TODOs View' as an option for dashboard preferences !3379 (Elias W.)
- Allow issues and merge requests to be assigned to the author !2765
- Make Ci::Commit to group only similar builds and make it stateful (ref, tag) (Kamil Trzciński)
- Gracefully handle notes on deleted commits in merge requests (Stan Hu)
- Decouple membership and notifications
- Fix creation of merge requests for orphaned branches (Stan Hu)
...
...
app/models/concerns/statuseable.rb
View file @
433ca739
...
...
@@ -7,7 +7,7 @@ module Statuseable
def
status_sql
builds
=
all
.
select
(
'count(*)'
).
to_sql
success
=
all
.
success
.
select
(
'count(*)'
).
to_sql
ignored
=
all
.
ignored
.
select
(
'count(*)'
).
to_sql
if
all
.
try
(
:ignored
)
ignored
=
all
.
ignored
.
select
(
'count(*)'
).
to_sql
if
all
.
respond_to?
(
:ignored
)
ignored
||=
'0'
pending
=
all
.
pending
.
select
(
'count(*)'
).
to_sql
running
=
all
.
running
.
select
(
'count(*)'
).
to_sql
...
...
app/views/projects/builds/index.html.haml
View file @
433ca739
...
...
@@ -58,6 +58,6 @@
%th
Coverage
%th
=
render
@builds
,
commit_sha:
true
,
stage:
true
,
allow_retry:
true
,
coverage:
@project
.
build_coverage_enabled?
=
render
@builds
,
commit_sha:
true
,
ref:
true
,
stage:
true
,
allow_retry:
true
,
coverage:
@project
.
build_coverage_enabled?
=
paginate
@builds
,
theme:
'gitlab'
app/views/projects/ci/builds/_build.html.haml
View file @
433ca739
...
...
@@ -19,7 +19,7 @@
%td
=
link_to
build
.
short_sha
,
namespace_project_commit_path
(
build
.
project
.
namespace
,
build
.
project
,
build
.
sha
),
class:
"monospace"
-
if
!
defined?
(
ref
)
||
ref
-
if
defined?
(
ref
)
&&
ref
%td
-
if
build
.
ref
=
link_to
build
.
ref
,
namespace_project_commits_path
(
build
.
project
.
namespace
,
build
.
project
,
build
.
ref
)
...
...
app/views/projects/generic_commit_statuses/_generic_commit_status.html.haml
View file @
433ca739
...
...
@@ -15,12 +15,13 @@
-
if
defined?
(
commit_sha
)
&&
commit_sha
%td
=
link_to
generic_commit_status
.
short_sha
,
namespace_project_commit_path
(
generic_commit_status
.
project
.
namespace
,
generic_commit_status
.
project
,
generic_commit_status
.
sha
),
class:
"monospace"
%td
-
if
generic_commit_status
.
ref
=
link_to
generic_commit_status
.
ref
,
namespace_project_commits_path
(
generic_commit_status
.
project
.
namespace
,
generic_commit_status
.
project
,
generic_commit_status
.
ref
)
-
else
.light
none
-
if
defined?
(
ref
)
&&
ref
%td
-
if
generic_commit_status
.
ref
=
link_to
generic_commit_status
.
ref
,
namespace_project_commits_path
(
generic_commit_status
.
project
.
namespace
,
generic_commit_status
.
project
,
generic_commit_status
.
ref
)
-
else
.light
none
-
if
defined?
(
runner
)
&&
runner
%td
...
...
spec/requests/api/commits_spec.rb
View file @
433ca739
...
...
@@ -48,7 +48,7 @@ describe API::API, api: true do
expect
(
response
.
status
).
to
eq
(
404
)
end
it
"should return n
ot_found for CI status
"
do
it
"should return n
il for commit without CI
"
do
get
api
(
"/projects/
#{
project
.
id
}
/repository/commits/
#{
project
.
repository
.
commit
.
id
}
"
,
user
)
expect
(
response
.
status
).
to
eq
(
200
)
expect
(
json_response
[
'status'
]).
to
be_nil
...
...
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