|
Lines 44-50
class StatusBubble(View):
a/Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py_sec1
|
| 44 |
# FIXME: Auto-generate this list https://bugs.webkit.org/show_bug.cgi?id=195640 |
44 |
# FIXME: Auto-generate this list https://bugs.webkit.org/show_bug.cgi?id=195640 |
| 45 |
# Note: This list is sorted in the order of which bubbles appear in bugzilla. |
45 |
# Note: This list is sorted in the order of which bubbles appear in bugzilla. |
| 46 |
ALL_QUEUES = ['style', 'ios', 'ios-sim', 'mac', 'mac-debug', 'mac-AS', 'tv', 'tv-sim', 'watch', 'watch-sim', 'gtk', 'wpe', 'wincairo', 'win', |
46 |
ALL_QUEUES = ['style', 'ios', 'ios-sim', 'mac', 'mac-debug', 'mac-AS', 'tv', 'tv-sim', 'watch', 'watch-sim', 'gtk', 'wpe', 'wincairo', 'win', |
| 47 |
'ios-wk2', 'mac-wk1', 'mac-wk2', 'mac-debug-wk1', 'api-ios', 'api-mac', 'api-gtk', |
47 |
'ios-wk2', 'mac-wk1', 'mac-wk2', 'mac-debug-wk1', 'gtk-wk2', 'api-ios', 'api-mac', 'api-gtk', |
| 48 |
'bindings', 'jsc', 'jsc-armv7', 'jsc-armv7-tests', 'jsc-mips', 'jsc-mips-tests', 'jsc-i386', 'webkitperl', 'webkitpy', 'services'] |
48 |
'bindings', 'jsc', 'jsc-armv7', 'jsc-armv7-tests', 'jsc-mips', 'jsc-mips-tests', 'jsc-i386', 'webkitperl', 'webkitpy', 'services'] |
| 49 |
# FIXME: Auto-generate the queue's trigger relationship |
49 |
# FIXME: Auto-generate the queue's trigger relationship |
| 50 |
QUEUE_TRIGGERS = { |
50 |
QUEUE_TRIGGERS = { |
|
Lines 55-60
class StatusBubble(View):
a/Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py_sec2
|
| 55 |
'mac-wk2': 'mac', |
55 |
'mac-wk2': 'mac', |
| 56 |
'mac-debug-wk1': 'mac-debug', |
56 |
'mac-debug-wk1': 'mac-debug', |
| 57 |
'api-gtk': 'gtk', |
57 |
'api-gtk': 'gtk', |
|
|
58 |
'gtk-wk2': 'gtk', |
| 58 |
'jsc-mips-tests': 'jsc-mips', |
59 |
'jsc-mips-tests': 'jsc-mips', |
| 59 |
'jsc-armv7-tests': 'jsc-armv7', |
60 |
'jsc-armv7-tests': 'jsc-armv7', |
| 60 |
} |
61 |
} |