2015-12-23 02:04:40 +05:30
|
|
|
- project = build.project
|
2016-08-24 12:49:21 +05:30
|
|
|
%tr.build.commit
|
2015-12-23 02:04:40 +05:30
|
|
|
%td.status
|
|
|
|
= ci_status_with_icon(build.status)
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
%td
|
|
|
|
.branch-commit
|
|
|
|
- if can?(current_user, :read_build, build.project)
|
|
|
|
= link_to namespace_project_build_url(build.project.namespace, build.project, build) do
|
|
|
|
%span.build-link ##{build.id}
|
|
|
|
- else
|
|
|
|
%span.build-link ##{build.id}
|
|
|
|
|
|
|
|
- if build.ref
|
2016-09-13 17:45:13 +05:30
|
|
|
.icon-container
|
|
|
|
= build.tag? ? icon('tag') : icon('code-fork')
|
2016-08-24 12:49:21 +05:30
|
|
|
= link_to build.ref, namespace_project_commits_path(build.project.namespace, build.project, build.ref), class: "monospace branch-name"
|
|
|
|
- else
|
|
|
|
.light none
|
2016-09-13 17:45:13 +05:30
|
|
|
.icon-container
|
|
|
|
= custom_icon("icon_commit")
|
2016-08-24 12:49:21 +05:30
|
|
|
|
|
|
|
= link_to build.short_sha, namespace_project_commit_path(build.project.namespace, build.project, build.sha), class: "monospace commit-id"
|
2016-09-13 17:45:13 +05:30
|
|
|
- if build.stuck?
|
|
|
|
%i.fa.fa-warning.text-warning
|
2016-08-24 12:49:21 +05:30
|
|
|
|
|
|
|
.label-container
|
|
|
|
- if build.tags.any?
|
|
|
|
- build.tags.each do |tag|
|
|
|
|
%span.label.label-primary
|
|
|
|
= tag
|
|
|
|
- if build.try(:trigger_request)
|
|
|
|
%span.label.label-info triggered
|
|
|
|
- if build.try(:allow_failure)
|
|
|
|
%span.label.label-danger allowed to fail
|
2015-12-23 02:04:40 +05:30
|
|
|
|
|
|
|
%td
|
|
|
|
- if project
|
2016-06-02 11:05:42 +05:30
|
|
|
= link_to project.name_with_namespace, admin_namespace_project_path(project.namespace, project)
|
2015-12-23 02:04:40 +05:30
|
|
|
|
|
|
|
%td
|
|
|
|
- if build.try(:runner)
|
|
|
|
= runner_link(build.runner)
|
|
|
|
- else
|
|
|
|
.light none
|
|
|
|
|
|
|
|
%td
|
|
|
|
#{build.stage} / #{build.name}
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
%td
|
2015-12-23 02:04:40 +05:30
|
|
|
- if build.duration
|
2016-08-24 12:49:21 +05:30
|
|
|
%p.duration
|
|
|
|
= custom_icon("icon_timer")
|
2016-09-13 17:45:13 +05:30
|
|
|
= duration_in_numbers(build.duration)
|
2015-12-23 02:04:40 +05:30
|
|
|
|
|
|
|
- if build.finished_at
|
2016-08-24 12:49:21 +05:30
|
|
|
%p.finished-at
|
|
|
|
= icon("calendar")
|
|
|
|
%span #{time_ago_with_tooltip(build.finished_at)}
|
2015-12-23 02:04:40 +05:30
|
|
|
|
|
|
|
- if defined?(coverage) && coverage
|
|
|
|
%td.coverage
|
|
|
|
- if build.try(:coverage)
|
|
|
|
#{build.coverage}%
|
|
|
|
|
|
|
|
%td
|
|
|
|
.pull-right
|
2016-04-02 18:10:28 +05:30
|
|
|
- if can?(current_user, :read_build, project) && build.artifacts?
|
2016-06-02 11:05:42 +05:30
|
|
|
= link_to download_namespace_project_build_artifacts_path(build.project.namespace, build.project, build), title: 'Download artifacts', class: 'btn btn-build' do
|
2015-12-23 02:04:40 +05:30
|
|
|
%i.fa.fa-download
|
2016-04-02 18:10:28 +05:30
|
|
|
- if can?(current_user, :update_build, build.project)
|
2015-12-23 02:04:40 +05:30
|
|
|
- if build.active?
|
2016-06-02 11:05:42 +05:30
|
|
|
= 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
|
|
|
|
%i.fa.fa-remove.cred
|
|
|
|
- elsif defined?(allow_retry) && allow_retry && 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
|
|
|
|
%i.fa.fa-refresh
|