show.html.haml 5.6 KB
Newer Older
1 2 3 4 5 6 7 8 9
.build-page
  .gray-content-block
    Build for commit
    %strong.monospace
      = link_to @build.commit.short_sha, ci_status_path(@build.commit)
    from
    %code #{@build.ref}

  #up-build-trace
K
Kamil Trzcinski 已提交
10
  - if @commit.matrix_for_ref?(@build.ref)
11
    %ul.center-top-menu.build-top-menu
12
      - @commit.latest_builds_for_ref(@build.ref).each do |build|
13 14 15 16 17 18 19 20 21 22
        %li{class: ('active' if build == @build) }
          = link_to namespace_project_build_path(@project.namespace, @project, build) do
            = ci_icon_for_status(build.status)
            %span
              - if build.name
                = build.name
              - else
                = build.id


23
      - unless @commit.latest_builds_for_ref(@build.ref).include?(@build)
24 25 26 27
        %li.active
          %a
            Build ##{@build.id}
            ·
K
Kamil Trzcinski 已提交
28
            %i.fa.fa-warning
29 30 31 32 33 34 35 36 37 38 39 40 41
            This build was retried.

  .gray-content-block.second-block
    .build-head
      .clearfix
        = ci_status_with_icon(@build.status)
        - if @build.duration
          %span
            %i.fa.fa-time
            #{duration_in_words(@build.finished_at, @build.started_at)}
        .pull-right
          = @build.updated_at.stamp('19:00 Aug 27')

42 43 44 45 46
  - if @build.show_warning?
    - unless @build.any_runners_online?
      .bs-callout.bs-callout-warning
        %p
          - if no_runners_for_project?(@build.project)
K
Kamil Trzcinski 已提交
47
            This build is stuck, because the project doesn't have any runners online assigned to it.
48
          - elsif @build.tags.any?
49
            This build is stuck, because you don't have any active runners online with any of these tags assigned to them:
50 51 52 53
            - @build.tags.each do |tag|
              %span.label.label-primary
                = tag
          - else
54
            This build is stuck, because you don't have any active runners that can run this build.
55 56 57 58 59 60

          %br
          Go to
          = link_to namespace_project_runners_path(@build.gl_project.namespace, @build.gl_project) do
            Runners page

61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
  .row.prepend-top-default
    .col-md-9
      .clearfix
        - if @build.active?
          .autoscroll-container
            %button.btn.btn-success.btn-sm#autoscroll-button{:type => "button", :data => {:state => 'disabled'}} enable autoscroll
          .clearfix
      .scroll-controls
        = link_to '#up-build-trace', class: 'btn' do
          %i.fa.fa-angle-up
        = link_to '#down-build-trace', class: 'btn' do
          %i.fa.fa-angle-down

      %pre.trace#build-trace
        %code.bash
          = preserve do
            = raw @build.trace_html
      %div#down-build-trace

    .col-md-3
      - if @build.coverage
        .build-widget
          %h4.title
            Test coverage
          %h1 #{@build.coverage}%


      .build-widget
        %h4.title
          Build
          - if current_user && can?(current_user, :manage_builds, @project)
            .pull-right
              - if @build.active?
94
                = link_to "Cancel", cancel_namespace_project_build_path(@project.namespace, @project, @build), class: 'btn btn-sm btn-danger'
95
              - elsif @build.commands.present?
96
                = link_to "Retry", retry_namespace_project_build_path(@project.namespace, @project, @build), class: 'btn btn-sm btn-primary', method: :post
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178

        - if @build.duration
          %p
            %span.attr-name Duration:
            #{duration_in_words(@build.finished_at, @build.started_at)}
        %p
          %span.attr-name Created:
          #{time_ago_in_words(@build.created_at)} ago
        - if @build.finished_at
          %p
            %span.attr-name Finished:
            #{time_ago_in_words(@build.finished_at)} ago
        %p
          %span.attr-name Runner:
          - if @build.runner && current_user && current_user.admin
            \#{link_to "##{@build.runner.id}", ci_admin_runner_path(@build.runner.id)}
          - elsif @build.runner
            \##{@build.runner.id}

      - if @build.trigger_request
        .build-widget
          %h4.title
            Trigger

          %p
            %span.attr-name Token:
            #{@build.trigger_request.trigger.short_token}

          - if @build.trigger_request.variables
            %p
              %span.attr-name Variables:

            %code
              - @build.trigger_request.variables.each do |key, value|
                #{key}=#{value}

      .build-widget
        %h4.title
          Commit
          .pull-right
            %small #{build_commit_link @build}
        %p
          %span.attr-name Branch:
          #{build_ref_link @build}
        %p
          %span.attr-name Author:
          #{@build.commit.git_author_name}
        %p
          %span.attr-name Message:
          #{@build.commit.git_commit_message}

      - if @build.tags.any?
        .build-widget
          %h4.title
            Tags
          - @build.tag_list.each do |tag|
            %span.label.label-primary
              = tag

      - if @builds.present?
        .build-widget
          %h4.title #{pluralize(@builds.count, "other build")} for #{@build.short_sha}:
          %table.table.builds
            - @builds.each_with_index do |build, i|
              %tr.build
                %td
                  = ci_icon_for_status(build.status)
                %td
                  = link_to namespace_project_build_path(@project.namespace, @project, @build) do
                    - if build.name
                      = build.name
                    - else
                      %span ##{build.id}

                %td.status= build.status


          = paginate @builds


  :javascript
    new CiBuild("#{namespace_project_build_path(@project.namespace, @project, @build)}", "#{@build.status}")