blob: dc518e4a36cbed8d63bb9ae20370675e351cd297 (
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
|
{% extends "base.html" %}
{% block heading %}
Recent Invocations
{% endblock %}
{% block content %}
{% if filter_info %}
<h1>Invocations filtered by {{ filter_info | e }}</h1>
{% else %}
<h1>Recent Invocations</h1>
Filter by:
<a href="/filterinvocations/noncached">only not fully cached</a>
{% if context_filters %}
<details>
<summary>Context</summary>
{% for entry in context_filters %}
<tt>{{ entry.key | e }}</tt>:
{% for value in entry["values"] %}
{% if loop.index > 1 %}
,
{% endif %}
<a href="/filterinvocations/context/{{ entry["key_hex"] | e }}/{{ value["value_hex"] | e }}"><tt>{{ value["value"] | e }}</tt></a>
{% endfor %}<br>
{% endfor %}
</details>
{% endif %}
{% if remote_props_filters %}
<details>
<summary>Remote properties</summary>
{% for entry in remote_props_filters %}
<tt>{{ entry.key | e }}</tt>:
{% for value in entry["values"] %}
{% if loop.index > 1 %}
,
{% endif %}
<a href="/filterinvocations/remote/prop/{{ entry["key_hex"] | e }}/{{ value["value_hex"] | e }}"><tt>{{ value["value"] | e }}</tt></a>
{% endfor %}<br>
{% endfor %}
</details>
{% endif %}
{% endif %}
{% if full_invocations %}
<div id="invocation-list">
<ul>
{% for invocation in full_invocations %}
<li> <a href="/invocations/{{invocation.name |e}}"><tt>{{ invocation.name | e }}</tt></a>
{% if invocation.subcommand %}
<span id="invocation-verb"><tt>{{ invocation.subcommand | e }}</tt></span>
{% endif %}
{% if invocation.target %}
<span id="invocation-target"><tt>{{ invocation.target | e}}</tt></span>
{% endif %}
{% if invocation.exit_code != 0 %}
<span id="invocation-failure"><b>
{% if invocation.exit_code == 1 %}
build failed
{% elif invocation.exit_code == 2 %}
failed
{% elif invocation.exit_code == 8 %}
analysis failure
{% elif invocation.exit_code == 16 %}
build-environment failure
{% elif invocation.exit_code == 32 %}
syntax/invocation error
{% else %}
exit code {{ invocation.exit_code | e }}
{% endif %}
</b></span>
{% endif %}
<ul>
{% if invocation.remote_address %}
<li>
Remote: <tt>{{ invocation.remote_address | e }}@{{ invocation.remote_props | e }}</tt>
</li>
{% endif %}
{% if invocation.config %}
<li>
Configuration: <tt>{{ invocation.config | e}}</tt>
</li>
{% endif %}
{% if invocation.context %}
<li>
Context: <tt>{{ invocation.context | e }}</tt>
</li>
{% endif %}
</ul>
</li>
{% endfor %}
{% if reduced_invocations %}
<li>
<details>
<summary>{{ reduced_invocations_count | e }} more</summary>
<ul>
{% for invocation in reduced_invocations %}
<li>
<a href="/invocations/{{invocation.name |e}}"><tt>{{ invocation.name | e }}</tt></a>
{% if invocation.context %}
Context: <tt>{{ invocation.context | e }}</tt>
{% endif %}
</li>
{% endfor %}
</ul>
</details>
</li>
{% endif %}
</ul>
</div>
{% else %}
<i>(none)</i>
{% endif %}
{% endblock %}
|