_build.html.haml 3.41 KB
Newer Older
Annabel Dunstone's avatar
Annabel Dunstone committed
1
%tr.build.commit
2 3
  %td.status
    - if can?(current_user, :read_build, build)
4
      = ci_status_with_icon(build.status, namespace_project_build_url(build.project.namespace, build.project, build))
5 6 7
    - else
      = ci_status_with_icon(build.status)

Annabel Dunstone's avatar
Annabel Dunstone committed
8
  %td
9
    .branch-commit
Annabel Dunstone's avatar
Annabel Dunstone committed
10 11 12 13 14
      - if can?(current_user, :read_build, build)
        = link_to namespace_project_build_url(build.project.namespace, build.project, build) do
          %span ##{build.id}
      - else
        %span ##{build.id}
15

Annabel Dunstone's avatar
Annabel Dunstone committed
16 17 18 19
      - if build.stuck?
        = icon('warning', class: 'text-warning has-tooltip', title: 'Build is stuck. Check runners.')
      - if defined?(retried) && retried
        = icon('warning', class: 'text-warning has-tooltip', title: 'Build was retried.')
20

Annabel Dunstone's avatar
Annabel Dunstone committed
21 22 23 24 25
      - if defined?(ref) && ref
        - if build.ref
          = link_to build.ref, namespace_project_commits_path(build.project.namespace, build.project, build.ref), class: "monospace branch-name"
        - else
          .light none
26
        = custom_icon("icon_commit")
Annabel Dunstone's avatar
Annabel Dunstone committed
27 28 29 30

      - if defined?(commit_sha) && commit_sha
        = link_to build.short_sha, namespace_project_commit_path(build.project.namespace, build.project, build.sha), class: "commit-id monospace"

31 32
      .label-container
        - if build.tags.any?
Annabel Dunstone's avatar
Annabel Dunstone committed
33 34 35
          - build.tags.each do |tag|
            %span.label.label-primary
              = tag
36 37 38 39 40 41
        - if build.try(:trigger_request)
          %span.label.label-info triggered
        - if build.try(:allow_failure)
          %span.label.label-danger allowed to fail
        - if defined?(retried) && retried
          %span.label.label-warning retried
42 43
        - if build.manual?
          %span.label.label-info manual
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59


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

  - if defined?(stage) && stage
    %td
      = build.stage

  %td
    = build.name

Annabel Dunstone's avatar
Annabel Dunstone committed
60
  %td
61
    - if build.duration
Annabel Dunstone's avatar
Annabel Dunstone committed
62
      %p.duration
63
        = custom_icon("icon_timer")
64
        = duration_in_numbers(build.finished_at, build.started_at)
65
    - if build.finished_at
Annabel Dunstone's avatar
Annabel Dunstone committed
66 67 68
      %p.finished-at
        = icon("calendar")
        %span #{time_ago_with_tooltip(build.finished_at)}
69 70 71 72 73 74 75 76 77

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

  %td
    .pull-right
      - if can?(current_user, :read_build, build) && build.artifacts?
78
        = link_to download_namespace_project_build_artifacts_path(build.project.namespace, build.project, build), title: 'Download artifacts', class: 'btn btn-build' do
Kamil Trzcinski's avatar
Kamil Trzcinski committed
79
          = icon('download')
80 81
      - if can?(current_user, :update_build, build)
        - if build.active?
82
          = 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
Kamil Trzcinski's avatar
Kamil Trzcinski committed
83
            = icon('remove', class: 'cred')
84 85 86 87 88
        - elsif defined?(allow_retry) && allow_retry
          - if build.retryable?
            = 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
              = icon('repeat')
          - elsif build.playable?
89
            = link_to play_namespace_project_build_path(build.project.namespace, build.project, build, return_to: request.original_url), method: :post, title: 'Play', class: 'btn btn-build' do
90 91
              = icon('play')