BigW Consortium Gitlab

_build.html.haml 3.95 KB
Newer Older
Katarzyna Kobierska committed
1 2 3 4
- admin = local_assigns.fetch(:admin, false)
- ref = local_assigns.fetch(:ref, nil)
- commit_sha = local_assigns.fetch(:commit_sha, nil)
- retried = local_assigns.fetch(:retried, false)
5
- pipeline_link = local_assigns.fetch(:pipeline_link, false)
Katarzyna Kobierska committed
6 7 8
- stage = local_assigns.fetch(:stage, false)
- coverage = local_assigns.fetch(:coverage, false)
- allow_retry = local_assigns.fetch(:allow_retry, false)
9

10
%tr.build.commit{ class: ('retried' if retried) }
11
  %td.status
12
    = render "ci/status/badge", status: build.detailed_status(current_user)
13

14 15 16
  %td.branch-commit
    - if can?(current_user, :read_build, build)
      = link_to namespace_project_build_url(build.project.namespace, build.project, build) do
17
        %span.build-link ##{build.id}
18 19
    - else
      %span.build-link ##{build.id}
20

21 22
    - if ref
      - if build.ref
Annabel Dunstone committed
23
        .icon-container
24 25 26 27
          = build.tag? ? icon('tag') : icon('code-fork')
        = link_to build.ref, namespace_project_commits_path(build.project.namespace, build.project, build.ref), class: "monospace branch-name"
      - else
        .light none
28
      .icon-container.commit-icon
29
        = custom_icon("icon_commit")
Annabel Dunstone committed
30

31 32
    - if commit_sha
      = link_to build.short_sha, namespace_project_commit_path(build.project.namespace, build.project, build.sha), class: "commit-id monospace"
Annabel Dunstone committed
33

34
    - if build.stuck?
Filipa Lacerda committed
35
      = icon('warning', class: 'text-warning has-tooltip', title: 'Job is stuck. Check runners.')
36

37
    - if retried
Filipa Lacerda committed
38
      = icon('refresh', class: 'text-warning has-tooltip', title: 'Job was retried')
39

40 41 42 43 44 45 46 47 48 49 50
    .label-container
      - 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
      - if build.manual?
        %span.label.label-info manual
51

52 53 54 55 56 57 58 59
  - if pipeline_link
    %td
      = link_to pipeline_path(build.pipeline) do
        %span.pipeline-id ##{build.pipeline.id}
      %span by
      - if build.pipeline.user
        = user_avatar(user: build.pipeline.user, size: 20)
      - else
60
        %span.monospace API
61

62 63
  - if admin
    %td
64 65
      - if build.project
        = link_to build.project.name_with_namespace, admin_namespace_project_path(build.project.namespace, build.project)
66 67 68 69 70 71
    %td
      - if build.try(:runner)
        = runner_link(build.runner)
      - else
        .light none

72
  - if stage
73 74
    %td
      = build.stage
75 76

  %td
Katarzyna Kobierska committed
77
    = build.name
78

79
  %td
80
    - if build.duration
Annabel Dunstone committed
81
      %p.duration
82
        = custom_icon("icon_timer")
83
        = duration_in_numbers(build.duration)
84

85
    - if build.finished_at
Annabel Dunstone committed
86 87
      %p.finished-at
        = icon("calendar")
88
        %span= time_ago_with_tooltip(build.finished_at)
89

90
  %td.coverage
91 92
    - if coverage && build.try(:coverage)
      #{build.coverage}%
93 94 95 96

  %td
    .pull-right
      - if can?(current_user, :read_build, build) && build.artifacts?
97
        = link_to download_namespace_project_build_artifacts_path(build.project.namespace, build.project, build), title: 'Download artifacts', class: 'btn btn-build' do
98
          = icon('download')
99 100
      - if can?(current_user, :update_build, build)
        - if build.active?
101
          = 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
102
            = icon('remove', class: 'cred')
103
        - elsif allow_retry
Kamil Trzcinski committed
104
          - if build.playable? && !admin
105
            = 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
106
              = custom_icon('icon_play')
Kamil Trzcinski committed
107 108 109
          - elsif 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')