aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/builder.html
blob: f557d7c54003db45feda504548d717f05e1f0f17 (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
54
55
56
57
58
59
60
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
94
95
96
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
179
180
181
182
183
184
{% from 'build_line.html' import build_table %}
{% import 'forms.html' as forms %}

{% extends "layout.html" %}

{% block head %}
{{ super() }}
<script type='text/javascript'>
// <![CDATA[
//

// Mapping OE Core branch names to bitbake branch names
var bbvermap = {
  'jethro': '1.28',
  'krogoth': '1.30',
  'morty': '1.32',
  'pyro': '1.34',
  'rocko': '1.36',
  'sumo': '1.38',
  'master': 'master'
};

var eclipseBranchFormat = "branch_eclipse-poky-";

function isEclipseBranch(elementName) {
  var pattern = eclipseBranchFormat + "*";
  return new RegExp(pattern).test(elementName);
}

function updateFormBranchInputs(pokybranch) {
  var elements = document.querySelectorAll('input[name^="branch_"]');

  for (var i = 0, len = elements.length; i < len; i++) {
    var newval = pokybranch;
    if (elements[i].name == "branch_bitbake") {
      newval = bbvermap[pokybranch];
    } else if (isEclipseBranch(elements[i].name)) {
      eclipseRelease = elements[i].name.split(eclipseBranchFormat, 2)[1];
      // Match the Eclipse branch format
      if (pokybranch != "master") {
        newval = eclipseRelease + "/" + pokybranch;
      } else {
        newval = eclipseRelease + "-master";
      }
    } else if (elements[i].name == "branch_refkit") {
      // Refkit only tracks OE-Core master
      newval = "master";
    } else if (elements[i].name == "branch_meta-qt3") {
      // won't get a rocko, or newer, branch
      if (['jethro', 'krogoth', 'morty', 'pyro'].indexOf(pokybranch) < 0) {
        newval = "master"
      }
    } else if (elements[i].name == "branch_meta-gplv2") {
      // only has pyro and master branches
      if (pokybranch != "pyro") {
        newval = "master"
      }
    }
    elements[i].value = newval;
  }
}

// ]]>
</script>
{% endblock %}

{% block content %}

<h1>Builder {{ name }}</h1>

<p>(<a href="{{ path_to_root }}waterfall?show={{ name }}">view in waterfall</a>)</p>

{% if description %}
  <div class="BuilderDescription">{{ description }}</div>
{% endif %}

<div class="column">

{% if current %}
  <h2>Current Builds:</h2>
  <ul>
  {% for b in current %}
    <li><a href="{{ b.link }}">{{ b.num }}</a>
    {% if b.when %}
      ETA: {{ b.when_time }} [{{ b.when }}]
    {% endif %}

    {{ b.current_step }}

    {% if authz.advertiseAction('stopBuild', request) %}
      {{ forms.stop_build(b.stop_url, authz, on_all=False, short=True, label='Build') }}
    {% endif %}    
    </li>
  {% endfor %}
  </ul>
{% else %}
  <h2>No current builds</h2>
{% endif %}    
 
{% if pending %}
  <h2>Pending Build Requests:</h2>
  <ul>
  {% for b in pending %}
    <li><small>({{ b.when }}, waiting {{ b.delay }})</small> 
    
    {% if authz.advertiseAction('cancelPendingBuild', request) %}
      {{ forms.cancel_pending_build(builder_url+"/cancelbuild", authz, short=True, id=b.id) }}
    {% endif %}    
    
    {% if b.num_changes < 4 %}
        {% for c in b.changes %}{{ c.revision|shortrev(c.repo) }}
        (<a href="{{ c.url }}">{{ c.who|email }}</a>){% if not loop.last %},{% endif %}
        {% endfor %}
    {% else %}
        ({{ b.num_changes }} changes)
    {% endif %}    

      {% if 'owner' in b.properties %}
        <b>Forced build</b>
        by {{b.properties['owner'][0]}}
        <small>{{b.properties['reason'][0]}}</small>
      {% endif %}
    </li>
  {% endfor %}
  </ul>  
  
  {% if authz.advertiseAction('cancelPendingBuild', request) %}
    {{ forms.cancel_pending_build(builder_url+"/cancelbuild", authz, short=False, id='all') }}
  {% endif %}    
     
{% else %}
  <h2>No Pending Build Requests</h2>
{% endif %}

<h2>Recent Builds:</h2>

{{ build_table(recent) }}

<a href="?numbuilds={{numbuilds + 5}}">Show more</a>

</div>
<div class="column">

<h2>Buildslaves:</h2>
<table class="info">
{% if slaves %}
<tr>
  <th>Name</th>
  <th>Status</th>
  <th>Admin</th>
</tr>
{% endif %}
{% for s in slaves %}
  <tr class="{{ loop.cycle('alt', '') }}">
  <td><b><a href="{{ s.link|e }}">{{ s.name|e }}</a></b></td>
  {% if s.connected %}
    {% if s.paused %}
      <td class="paused">paused</td>
    {% else %}
      <td class="idle">connected</td>
    {% endif %}
  {% else %}
    <td class="offline">offline</td> 
  {% endif %}
  <td>{{ s.admin|email if s.admin else ""}}</td>
  </tr>
{% else %}
  <td>no slaves attached</td>
{% endfor %}
</table>

{% if authz.advertiseAction('pingBuilder', request) %}
  <h2>Ping slaves</h2>
  {{ forms.ping_builder(builder_url+"/ping", authz) }}
{% endif %}

{% if authz.advertiseAction('forceBuild', request) and force_schedulers != {} %}
  <h2>Force build</h2>
  {{ forms.force_build(builder_url+"/force", authz, request, False, force_schedulers=force_schedulers,default_props=default_props) }}
{% endif %}

</div>

{% endblock %}