| Differences between
and this patch
- a/Tools/ChangeLog +13 lines
Lines 1-3 a/Tools/ChangeLog_sec1
1
2020-08-26  Diego Pino Garcia  <dpino@igalia.com>
2
3
        [ews] Add gtk-wk2 to EWS bubbles
4
        https://bugs.webkit.org/show_bug.cgi?id=209104
5
6
        Reviewed by NOBODY (OOPS!).
7
8
        A new queue was added in r207648 which runs GTK LayoutTests.
9
        This patch adds the queue to the EWS bubbles.
10
11
        * BuildSlaveSupport/ews-app/ews/views/statusbubble.py:
12
        (StatusBubble):
13
1
2020-08-26  Youenn Fablet  <youenn@apple.com>
14
2020-08-26  Youenn Fablet  <youenn@apple.com>
2
15
3
        enumerateDevices should expose audiooutput devices that are tied to an audio input device
16
        enumerateDevices should expose audiooutput devices that are tied to an audio input device
- a/Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py -1 / +2 lines
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
    }

Return to Bug 209104