2015-10-24 18:46:33 +05:30
|
|
|
- gl_project = build.project.gl_project
|
2015-09-25 12:07:36 +05:30
|
|
|
- if build.commit && build.project
|
|
|
|
%tr.build
|
|
|
|
%td.build-link
|
2015-10-24 18:46:33 +05:30
|
|
|
= link_to namespace_project_build_path(gl_project.namespace, gl_project, build) do
|
2015-09-25 12:07:36 +05:30
|
|
|
%strong #{build.id}
|
|
|
|
|
|
|
|
%td.status
|
|
|
|
= ci_status_with_icon(build.status)
|
|
|
|
|
|
|
|
%td.commit-link
|
2015-10-24 18:46:33 +05:30
|
|
|
= link_to ci_status_path(build.commit) do
|
|
|
|
%strong #{build.commit.short_sha}
|
2015-09-25 12:07:36 +05:30
|
|
|
|
|
|
|
%td.runner
|
|
|
|
- if build.runner
|
|
|
|
= link_to build.runner.id, ci_admin_runner_path(build.runner)
|
|
|
|
|
|
|
|
%td.build-project
|
|
|
|
= truncate build.project.name, length: 30
|
|
|
|
|
|
|
|
%td.build-message
|
|
|
|
%span= truncate(build.commit.git_commit_message, length: 30)
|
|
|
|
|
|
|
|
%td.build-branch
|
|
|
|
%span= truncate(build.ref, length: 25)
|
|
|
|
|
|
|
|
%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
|