gitlab-org--gitlab-foss/app/views/ci/commits/_commit.html.haml

33 lines
727 B
Plaintext
Raw Normal View History

%tr.build
2015-08-26 01:42:46 +00:00
%td.status
= ci_status_with_icon(commit.status)
2015-08-26 01:42:46 +00:00
- if commit.running?
·
= commit.stage
%td.build-link
= link_to ci_status_path(commit) do
2015-08-26 01:42:46 +00:00
%strong #{commit.short_sha}
%td.build-message
%span= truncate_first_line(commit.git_commit_message)
%td.build-branch
- unless @ref
%span
2015-10-05 19:20:54 +00:00
- commit.refs.each do |ref|
= link_to truncate(ref, length: 25), ci_project_path(@project, ref: ref)
2015-08-26 01:42:46 +00:00
%td.duration
- if commit.duration > 0
#{time_interval_in_words commit.duration}
%td.timestamp
- if commit.finished_at
%span #{time_ago_in_words commit.finished_at} ago
2015-12-04 11:55:23 +00:00
- if commit.coverage
2015-08-26 01:42:46 +00:00
%td.coverage
2015-12-04 11:55:23 +00:00
#{commit.coverage}%