2015-10-14 06:15:03 -04:00
|
|
|
%tr.build
|
|
|
|
%td.status
|
|
|
|
= ci_status_with_icon(build.status)
|
|
|
|
|
|
|
|
%td.commit_status-link
|
|
|
|
- if build.target_url
|
|
|
|
= link_to build.target_url do
|
|
|
|
%strong Build ##{build.id}
|
|
|
|
- else
|
|
|
|
%strong Build ##{build.id}
|
|
|
|
|
|
|
|
%td
|
2015-10-14 08:20:27 -04:00
|
|
|
= link_to build.short_sha, namespace_project_commit_path(@project.namespace, @project, build.sha)
|
2015-10-14 06:15:03 -04:00
|
|
|
|
|
|
|
%td
|
2015-10-14 08:20:27 -04:00
|
|
|
= link_to build.ref, namespace_project_commits_path(@project.namespace, @project, build.ref)
|
2015-10-14 06:15:03 -04:00
|
|
|
|
|
|
|
%td
|
|
|
|
- if build.runner
|
|
|
|
= runner_link(build.runner)
|
|
|
|
- else
|
|
|
|
.light none
|
|
|
|
|
|
|
|
%td
|
|
|
|
= build.name
|
|
|
|
|
|
|
|
.pull-right
|
|
|
|
- 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
|
|
|
|
|
|
|
|
%td.duration
|
|
|
|
- if build.duration
|
|
|
|
#{duration_in_words(build.finished_at, build.started_at)}
|
|
|
|
|
|
|
|
%td.timestamp
|
|
|
|
- if build.finished_at
|
|
|
|
%span #{time_ago_in_words build.finished_at} ago
|
|
|
|
|
|
|
|
%td
|
|
|
|
.pull-right
|
|
|
|
- if current_user && can?(current_user, :manage_builds, @project)
|
|
|
|
- if build.cancel_url
|
|
|
|
= link_to build.cancel_url, title: 'Cancel' do
|
|
|
|
%i.fa.fa-remove.cred
|