2017-04-05 11:33:19 -04:00
|
|
|
- pipeline = @build.pipeline
|
2017-03-28 16:27:16 -04:00
|
|
|
|
2017-07-18 14:08:23 -04:00
|
|
|
.content-block.build-header.top-area.page-content-header
|
2016-10-26 13:48:27 -04:00
|
|
|
.header-content
|
2017-04-05 11:33:19 -04:00
|
|
|
= render 'ci/status/badge', status: @build.detailed_status(current_user), link: false, title: @build.status_title
|
2017-05-02 18:47:28 -04:00
|
|
|
%strong
|
|
|
|
Job
|
2017-06-29 13:06:35 -04:00
|
|
|
= link_to "##{@build.id}", project_job_path(@project, @build), class: 'js-build-id'
|
2016-10-24 16:20:27 -04:00
|
|
|
in pipeline
|
2017-05-11 11:47:44 -04:00
|
|
|
%strong
|
|
|
|
= link_to "##{pipeline.id}", pipeline_path(pipeline)
|
|
|
|
for
|
|
|
|
%strong
|
2017-06-29 13:06:35 -04:00
|
|
|
= link_to pipeline.short_sha, project_commit_path(@project, pipeline.sha), class: 'commit-sha'
|
2016-10-26 13:48:27 -04:00
|
|
|
from
|
2017-05-11 11:47:44 -04:00
|
|
|
%strong
|
|
|
|
= link_to @build.ref, project_ref_path(@project, @build.ref), class: 'ref-name'
|
2017-05-02 18:47:28 -04:00
|
|
|
|
2017-05-16 07:41:15 -04:00
|
|
|
= render "projects/jobs/user" if @build.user
|
2017-05-02 18:47:28 -04:00
|
|
|
|
2016-10-26 13:48:27 -04:00
|
|
|
= time_ago_with_tooltip(@build.created_at)
|