_build.html.haml 2.4 KB
Newer Older
1 2 3 4 5 6
- project = build.project
%tr.build
  %td.status
    = ci_status_with_icon(build.status)

  %td.build-link
7 8
    - if can?(current_user, :read_build, build.project)
      = link_to namespace_project_build_url(build.project.namespace, build.project, build) do
9 10 11 12
        %strong Build ##{build.id}
    - else
      %strong Build ##{build.id}

13
    - if build.stuck?
14 15 16 17
      %i.fa.fa-warning.text-warning

  %td
    - if project
18
      = link_to project.name_with_namespace, admin_namespace_project_path(project.namespace, project)
19 20

  %td
21
    = link_to build.short_sha, namespace_project_commit_path(build.project.namespace, build.project, build.sha), class: "monospace"
22 23 24

  %td
    - if build.ref
25
      = link_to build.ref, namespace_project_commits_path(build.project.namespace, build.project, build.ref)
26 27 28 29 30 31 32 33 34 35 36 37
    - else
      .light none

  %td
    - if build.try(:runner)
      = runner_link(build.runner)
    - else
      .light none

  %td
    #{build.stage} / #{build.name}

Annabel Dunstone's avatar
Annabel Dunstone committed
38 39 40 41 42 43 44 45 46
  %td
    - 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
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62

  %td.duration
    - if build.duration
      #{duration_in_words(build.finished_at, build.started_at)}

  %td.timestamp
    - if build.finished_at
      %span #{time_ago_with_tooltip(build.finished_at)}

  - if defined?(coverage) && coverage
    %td.coverage
      - if build.try(:coverage)
        #{build.coverage}%

  %td
    .pull-right
63
      - if can?(current_user, :read_build, project) && build.artifacts?
64
        = link_to download_namespace_project_build_artifacts_path(build.project.namespace, build.project, build), title: 'Download artifacts', class: 'btn btn-build' do
65
          %i.fa.fa-download
66
      - if can?(current_user, :update_build, build.project)
67
        - if build.active?
68
          = 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
69 70
            %i.fa.fa-remove.cred
        - elsif defined?(allow_retry) && allow_retry && build.retryable?
71
          = 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
Annabel Dunstone's avatar
Annabel Dunstone committed
72
            %i.fa.fa-refresh