Changeset 252925 in webkit


Ignore:
Timestamp:
Nov 28, 2019 7:43:52 AM (4 years ago)
Author:
aakash_jain@apple.com
Message:

[ews] Enable Windows queue on new EWS
https://bugs.webkit.org/show_bug.cgi?id=204243

Reviewed by Jonathan Bedard.

  • BuildSlaveSupport/ews-app/ews/views/statusbubble.py: Enabled windows queue bubble on new EWS.
  • BuildSlaveSupport/ews-build/config.json: Enabled the scheduler for windows queue. Removed the disabled Try_Userpass scheduler.
  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js:

(BubbleQueueServer): Removed windows ews queue from bot-watcher's dashboard.

  • QueueStatusServer/config/queues.py: Removed windows queue from old EWS.
Location:
trunk/Tools
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js

    r252775 r252925  
    2828    const queueInfo = {
    2929        "commit-queue": {platform: Dashboard.Platform.macOSHighSierra, shortName: "commit", title: "Commit Queue"},
    30         "win-ews": {platform: Dashboard.Platform.Windows10, shortName: "win", title: "WebKit1\xa0Release\xa0Build\xa0EWS"},
    3130    };
    3231
  • trunk/Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py

    r252775 r252925  
    4040    # These queue names are from shortname in https://trac.webkit.org/browser/webkit/trunk/Tools/BuildSlaveSupport/ews-build/config.json
    4141    # FIXME: Auto-generate this list https://bugs.webkit.org/show_bug.cgi?id=195640
    42     ALL_QUEUES = ['style', 'ios', 'ios-sim', 'mac', 'mac-debug', 'gtk', 'wpe', 'wincairo',
    43                   'ios-wk2', 'mac-wk1', 'mac-wk2', 'mac-debug-wk1', 'api-ios', 'api-mac', 'bindings', 'jsc', 'jsc-armv7', 'jsc-mips', 'webkitperl', 'webkitpy', 'win', 'services']
    44     ENABLED_QUEUES = ['style', 'ios', 'ios-sim', 'mac', 'mac-debug', 'gtk', 'wpe', 'wincairo',
     42    ALL_QUEUES = ['style', 'ios', 'ios-sim', 'mac', 'mac-debug', 'gtk', 'wpe', 'wincairo', 'win',
     43                  'ios-wk2', 'mac-wk1', 'mac-wk2', 'mac-debug-wk1', 'api-ios', 'api-mac', 'bindings', 'jsc', 'jsc-armv7', 'jsc-mips', 'webkitperl', 'webkitpy', 'services']
     44    ENABLED_QUEUES = ['style', 'ios', 'ios-sim', 'mac', 'mac-debug', 'gtk', 'wpe', 'wincairo', 'win',
    4545                      'ios-wk2', 'mac-wk1', 'mac-wk2', 'mac-debug-wk1', 'api-ios', 'api-mac', 'bindings', 'jsc', 'jsc-armv7', 'jsc-mips', 'webkitperl', 'webkitpy', 'services']
    4646    # FIXME: Auto-generate the queue's trigger relationship
  • trunk/Tools/BuildSlaveSupport/ews-build/config.json

    r252788 r252925  
    541541      "builderNames": ["Apply-WatchList-EWS", "Bindings-Tests-EWS", "GTK-Webkit2-EWS", "iOS-13-Build-EWS", "iOS-13-Simulator-Build-EWS",
    542542                       "JSC-ARMv7-32bits-EWS", "JSC-i386-32bits-EWS", "JSC-MIPSEL-32bits-EWS", "JSC-Tests-EWS", "macOS-High-Sierra-Debug-Build-EWS", "macOS-High-Sierra-Release-Build-EWS",
    543                        "Services-EWS", "Style-EWS", "WebKitPerl-Tests-EWS", "WebKitPy-Tests-EWS", "WPE-EWS", "WinCairo-EWS"]
     543                       "Services-EWS", "Style-EWS", "WebKitPerl-Tests-EWS", "WebKitPy-Tests-EWS", "WPE-EWS", "WinCairo-EWS", "Windows-EWS"]
    544544    },
    545545    {
     
    548548      "port": 5557,
    549549      "builderNames": ["Commit-Queue"]
    550     },
    551     {
    552       "type": "Try_Userpass",
    553       "name": "disabled",
    554       "port": 5556,
    555       "builderNames": ["Windows-EWS"]
    556550    },
    557551    {
  • trunk/Tools/ChangeLog

    r252917 r252925  
     12019-11-28  Aakash Jain  <aakash_jain@apple.com>
     2
     3        [ews] Enable Windows queue on new EWS
     4        https://bugs.webkit.org/show_bug.cgi?id=204243
     5
     6        Reviewed by Jonathan Bedard.
     7
     8        * BuildSlaveSupport/ews-app/ews/views/statusbubble.py: Enabled windows queue bubble on new EWS.
     9        * BuildSlaveSupport/ews-build/config.json: Enabled the scheduler for windows queue. Removed the disabled Try_Userpass scheduler.
     10        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js:
     11        (BubbleQueueServer): Removed windows ews queue from bot-watcher's dashboard.
     12        * QueueStatusServer/config/queues.py: Removed windows queue from old EWS.
     13
    1142019-11-28  Philippe Normand  <pnormand@igalia.com>
    215
  • trunk/Tools/QueueStatusServer/config/queues.py

    r252775 r252925  
    3434    "commit-queue",
    3535    "jsc-i386-ews",
    36     "win-ews",
    3736]
    3837
Note: See TracChangeset for help on using the changeset viewer.