summaryrefslogtreecommitdiff
path: root/app/views/projects/builds/show.html.haml
blob: ae7a7ecb392e8eba965776a519efc8f62e68dc72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
- @no_container = true
- page_title "#{@build.name} (##{@build.id})", "Builds"
- header_title project_title(@project, "Builds", project_builds_path(@project))
= render "projects/pipelines/head", build_subnav: true

%div{ class: container_class }
  .build-page
    = render "header"

    - if @build.stuck?
      - unless @build.any_runners_online?
        .bs-callout.bs-callout-warning
          %p
            - if no_runners_for_project?(@build.project)
              This build is stuck, because the project doesn't have any runners online assigned to it.
            - elsif @build.tags.any?
              This build is stuck, because you don't have any active runners online with any of these tags assigned to them:
              - @build.tags.each do |tag|
                %span.label.label-primary
                  = tag
            - else
              This build is stuck, because you don't have any active runners that can run this build.

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

    .prepend-top-default
      - if @build.erased?
        .erased.alert.alert-warning
          - erased_by = "by #{link_to @build.erased_by.name, user_path(@build.erased_by)}" if @build.erased_by
          Build has been erased #{erased_by.html_safe} #{time_ago_with_tooltip(@build.erased_at)}
      - else
        #js-build-scroll.scroll-controls
          .scroll-step
            = link_to '#build-trace', class: 'btn' do
              %i.fa.fa-angle-up
            = link_to '#down-build-trace', class: 'btn' do
              %i.fa.fa-angle-down
          - if @build.active?
            .autoscroll-container
              %button.btn.btn-sm#autoscroll-button{:type => "button", :data => {:state => 'disabled'}}
                Enable autoscroll
        %pre.build-trace#build-trace
          %code.bash.js-build-output
          = icon("refresh spin", class: "js-build-refresh")

        #down-build-trace

  = render "sidebar"

.js-build-options{ data: javascript_build_options }