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
Jérome Perrin
gitlab-ce
Commits
34eea295
Commit
34eea295
authored
Apr 05, 2017
by
Lin Jen-Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix test and only show job status title if it's
cancelled and the pipeline is auto-cancelled.
parent
2d4fd769
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
54 additions
and
41 deletions
+54
-41
app/presenters/ci/build_presenter.rb
app/presenters/ci/build_presenter.rb
+6
-0
app/views/projects/builds/_header.html.haml
app/views/projects/builds/_header.html.haml
+2
-2
app/views/projects/ci/builds/_build.html.haml
app/views/projects/ci/builds/_build.html.haml
+38
-37
spec/views/projects/pipelines/show.html.haml_spec.rb
spec/views/projects/pipelines/show.html.haml_spec.rb
+8
-2
No files found.
app/presenters/ci/build_presenter.rb
View file @
34eea295
...
...
@@ -11,5 +11,11 @@ module Ci
def
erased_by_name
erased_by
.
name
if
erased_by_user?
end
def
status_title
if
canceled?
&&
pipeline
.
auto_canceled?
"Job is redundant and is auto-canceled by Pipeline #
#{
pipeline
.
auto_canceled_by_id
}
"
end
end
end
end
app/views/projects/builds/_header.html.haml
View file @
34eea295
-
pipeline
=
@build
.
pipeline
.
present
(
current_user:
current_user
)
-
pipeline
=
@build
.
pipeline
.content-block.build-header.top-area
.header-content
=
render
'ci/status/badge'
,
status:
@build
.
detailed_status
(
current_user
),
link:
false
,
title:
pipeline
.
status_title
=
render
'ci/status/badge'
,
status:
@build
.
detailed_status
(
current_user
),
link:
false
,
title:
@build
.
status_title
Job
%strong
.js-build-id
##{@build.id}
in pipeline
...
...
app/views/projects/ci/builds/_build.html.haml
View file @
34eea295
-
job
=
build
.
present
(
current_user:
current_user
)
-
pipeline
=
job
.
pipeline
-
admin
=
local_assigns
.
fetch
(
:admin
,
false
)
-
ref
=
local_assigns
.
fetch
(
:ref
,
nil
)
-
commit_sha
=
local_assigns
.
fetch
(
:commit_sha
,
nil
)
...
...
@@ -6,48 +8,47 @@
-
stage
=
local_assigns
.
fetch
(
:stage
,
false
)
-
coverage
=
local_assigns
.
fetch
(
:coverage
,
false
)
-
allow_retry
=
local_assigns
.
fetch
(
:allow_retry
,
false
)
-
pipeline
=
build
.
pipeline
.
present
(
current_user:
current_user
)
%tr
.build.commit
{
class:
(
'retried'
if
retried
)
}
%td
.status
=
render
"ci/status/badge"
,
status:
build
.
detailed_status
(
current_user
),
title:
pipeline
.
status_title
=
render
"ci/status/badge"
,
status:
job
.
detailed_status
(
current_user
),
title:
job
.
status_title
%td
.branch-commit
-
if
can?
(
current_user
,
:read_build
,
build
)
=
link_to
namespace_project_build_url
(
build
.
project
.
namespace
,
build
.
project
,
build
)
do
%span
.build-link
##{
build
.id}
-
if
can?
(
current_user
,
:read_build
,
job
)
=
link_to
namespace_project_build_url
(
job
.
project
.
namespace
,
job
.
project
,
job
)
do
%span
.build-link
##{
job
.id}
-
else
%span
.build-link
##{
build
.id}
%span
.build-link
##{
job
.id}
-
if
ref
-
if
build
.
ref
-
if
job
.
ref
.icon-container
=
build
.
tag?
?
icon
(
'tag'
)
:
icon
(
'code-fork'
)
=
link_to
build
.
ref
,
namespace_project_commits_path
(
build
.
project
.
namespace
,
build
.
project
,
build
.
ref
),
class:
"monospace branch-name"
=
job
.
tag?
?
icon
(
'tag'
)
:
icon
(
'code-fork'
)
=
link_to
job
.
ref
,
namespace_project_commits_path
(
job
.
project
.
namespace
,
job
.
project
,
job
.
ref
),
class:
"monospace branch-name"
-
else
.light
none
.icon-container.commit-icon
=
custom_icon
(
"icon_commit"
)
-
if
commit_sha
=
link_to
build
.
short_sha
,
namespace_project_commit_path
(
build
.
project
.
namespace
,
build
.
project
,
build
.
sha
),
class:
"commit-id monospace"
=
link_to
job
.
short_sha
,
namespace_project_commit_path
(
job
.
project
.
namespace
,
job
.
project
,
job
.
sha
),
class:
"commit-id monospace"
-
if
build
.
stuck?
-
if
job
.
stuck?
=
icon
(
'warning'
,
class:
'text-warning has-tooltip'
,
title:
'Job is stuck. Check runners.'
)
-
if
retried
=
icon
(
'refresh'
,
class:
'text-warning has-tooltip'
,
title:
'Job was retried'
)
.label-container
-
if
build
.
tags
.
any?
-
build
.
tags
.
each
do
|
tag
|
-
if
job
.
tags
.
any?
-
job
.
tags
.
each
do
|
tag
|
%span
.label.label-primary
=
tag
-
if
build
.
try
(
:trigger_request
)
-
if
job
.
try
(
:trigger_request
)
%span
.label.label-info
triggered
-
if
build
.
try
(
:allow_failure
)
-
if
job
.
try
(
:allow_failure
)
%span
.label.label-danger
allowed to fail
-
if
build
.
action?
-
if
job
.
action?
%span
.label.label-info
manual
-
if
pipeline_link
...
...
@@ -62,49 +63,49 @@
-
if
admin
%td
-
if
build
.
project
=
link_to
build
.
project
.
name_with_namespace
,
admin_namespace_project_path
(
build
.
project
.
namespace
,
build
.
project
)
-
if
job
.
project
=
link_to
job
.
project
.
name_with_namespace
,
admin_namespace_project_path
(
job
.
project
.
namespace
,
job
.
project
)
%td
-
if
build
.
try
(
:runner
)
=
runner_link
(
build
.
runner
)
-
if
job
.
try
(
:runner
)
=
runner_link
(
job
.
runner
)
-
else
.light
none
-
if
stage
%td
=
build
.
stage
=
job
.
stage
%td
=
build
.
name
=
job
.
name
%td
-
if
build
.
duration
-
if
job
.
duration
%p
.duration
=
custom_icon
(
"icon_timer"
)
=
duration_in_numbers
(
build
.
duration
)
=
duration_in_numbers
(
job
.
duration
)
-
if
build
.
finished_at
-
if
job
.
finished_at
%p
.finished-at
=
icon
(
"calendar"
)
%span
=
time_ago_with_tooltip
(
build
.
finished_at
)
%span
=
time_ago_with_tooltip
(
job
.
finished_at
)
%td
.coverage
-
if
coverage
&&
build
.
try
(
:coverage
)
#{
build
.
coverage
}
%
-
if
coverage
&&
job
.
try
(
:coverage
)
#{
job
.
coverage
}
%
%td
.pull-right
-
if
can?
(
current_user
,
:read_build
,
build
)
&&
build
.
artifacts?
=
link_to
download_namespace_project_build_artifacts_path
(
build
.
project
.
namespace
,
build
.
project
,
build
),
rel:
'nofollow'
,
download:
''
,
title:
'Download artifacts'
,
class:
'btn btn-build'
do
-
if
can?
(
current_user
,
:read_build
,
job
)
&&
job
.
artifacts?
=
link_to
download_namespace_project_build_artifacts_path
(
job
.
project
.
namespace
,
job
.
project
,
job
),
rel:
'nofollow'
,
download:
''
,
title:
'Download artifacts'
,
class:
'btn btn-build'
do
=
icon
(
'download'
)
-
if
can?
(
current_user
,
:update_build
,
build
)
-
if
build
.
active?
=
link_to
cancel_namespace_project_build_path
(
build
.
project
.
namespace
,
build
.
project
,
build
,
return_to:
request
.
original_url
),
method: :post
,
title:
'Cancel'
,
class:
'btn btn-build'
do
-
if
can?
(
current_user
,
:update_build
,
job
)
-
if
job
.
active?
=
link_to
cancel_namespace_project_build_path
(
job
.
project
.
namespace
,
job
.
project
,
job
,
return_to:
request
.
original_url
),
method: :post
,
title:
'Cancel'
,
class:
'btn btn-build'
do
=
icon
(
'remove'
,
class:
'cred'
)
-
elsif
allow_retry
-
if
build
.
playable?
&&
!
admin
=
link_to
play_namespace_project_build_path
(
build
.
project
.
namespace
,
build
.
project
,
build
,
return_to:
request
.
original_url
),
method: :post
,
title:
'Play'
,
class:
'btn btn-build'
do
-
if
job
.
playable?
&&
!
admin
=
link_to
play_namespace_project_build_path
(
job
.
project
.
namespace
,
job
.
project
,
job
,
return_to:
request
.
original_url
),
method: :post
,
title:
'Play'
,
class:
'btn btn-build'
do
=
custom_icon
(
'icon_play'
)
-
elsif
build
.
retryable?
=
link_to
retry_namespace_project_build_path
(
build
.
project
.
namespace
,
build
.
project
,
build
,
return_to:
request
.
original_url
),
method: :post
,
title:
'Retry'
,
class:
'btn btn-build'
do
-
elsif
job
.
retryable?
=
link_to
retry_namespace_project_build_path
(
job
.
project
.
namespace
,
job
.
project
,
job
,
return_to:
request
.
original_url
),
method: :post
,
title:
'Retry'
,
class:
'btn btn-build'
do
=
icon
(
'repeat'
)
spec/views/projects/pipelines/show.html.haml_spec.rb
View file @
34eea295
...
...
@@ -5,7 +5,13 @@ describe 'projects/pipelines/show' do
let
(
:user
)
{
create
(
:user
)
}
let
(
:project
)
{
create
(
:project
,
:repository
)
}
let
(
:pipeline
)
{
create
(
:ci_empty_pipeline
,
project:
project
,
sha:
project
.
commit
.
id
,
user:
user
)
}
let
(
:pipeline
)
do
create
(
:ci_empty_pipeline
,
project:
project
,
sha:
project
.
commit
.
id
,
user:
user
)
end
before
do
controller
.
prepend_view_path
(
'app/views/projects'
)
...
...
@@ -21,7 +27,7 @@ describe 'projects/pipelines/show' do
create
(
:generic_commit_status
,
pipeline:
pipeline
,
stage:
'external'
,
name:
'jenkins'
,
stage_idx:
3
)
assign
(
:project
,
project
)
assign
(
:pipeline
,
pipeline
)
assign
(
:pipeline
,
pipeline
.
present
(
current_user:
user
)
)
assign
(
:commit
,
project
.
commit
)
allow
(
view
).
to
receive
(
:can?
).
and_return
(
true
)
...
...
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