⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 249046 in webkit


Ignore:
Timestamp:
Aug 23, 2019, 8:47:44 AM (7 years ago)
Author:
aakash_jain@apple.com
Message:

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

Reviewed by Jonathan Bedard.

  • BuildSlaveSupport/ews-build/config.json: Enabled the scheduler for Style queue.
  • BuildSlaveSupport/ews-app/ews/views/statusbubble.py: Enabled style queue bubble on new EWS.
  • QueueStatusServer/config/queues.py: Removed style queue from old EWS.
  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js:

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

Location:
trunk/Tools
Files:
5 edited

Legend:

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

    r248088 r249046  
    2828    const queueInfo = {
    2929        "commit-queue": {platform: Dashboard.Platform.macOSHighSierra, shortName: "commit", title: "Commit Queue"},
    30         "style-queue": {shortName: "style", title: "Style Checker Queue"},
    3130        "jsc-armv7-ews": {platform: Dashboard.Platform.LinuxJSCOnly, shortName: "jsc-armv7", title: "ARMv7\xa0Release\xa0Build\xa0EWS"},
    3231        "jsc-ews": {platform: Dashboard.Platform.macOSMojave, shortName: "jsc", title: "Release\xa0JSC\xa0Tests\xa0EWS"},
  • trunk/Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py

    r248272 r249046  
    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 = ['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', 'style', 'webkitperl', 'webkitpy', 'win', 'services']
    44     ENABLED_QUEUES = ['ios', 'ios-sim', 'mac', 'mac-debug', 'gtk', 'wpe', 'wincairo',
     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', 'webkitperl', 'webkitpy', 'win', 'services']
     44    ENABLED_QUEUES = ['style', 'ios', 'ios-sim', 'mac', 'mac-debug', 'gtk', 'wpe', 'wincairo',
    4545                      'ios-wk2', 'mac-wk1', 'mac-wk2', 'mac-debug-wk1', 'api-ios', 'api-mac', 'bindings', 'webkitperl', 'webkitpy', 'services']
    4646    # FIXME: Auto-generate the queue's trigger relationship
  • trunk/Tools/BuildSlaveSupport/ews-build/config.json

    r248972 r249046  
    456456      "builderNames": ["Bindings-Tests-EWS", "GTK-Webkit2-EWS", "iOS-12-Build-EWS", "iOS-12-Simulator-Build-EWS",
    457457                       "macOS-High-Sierra-Debug-Build-EWS", "macOS-High-Sierra-Release-Build-EWS",
    458                        "Services-EWS", "WebKitPerl-Tests-EWS", "WebKitPy-Tests-EWS", "WPE-EWS", "WinCairo-EWS"]
     458                       "Services-EWS", "Style-EWS", "WebKitPerl-Tests-EWS", "WebKitPy-Tests-EWS", "WPE-EWS", "WinCairo-EWS"]
    459459    },
    460460    {
     
    462462      "name": "disabled",
    463463      "port": 5556,
    464       "builderNames": ["JSC-Tests-EWS", "Style-EWS", "Windows-EWS"]
     464      "builderNames": ["JSC-Tests-EWS", "Windows-EWS"]
    465465    },
    466466    {
  • trunk/Tools/ChangeLog

    r249039 r249046  
     12019-08-23  Aakash Jain  <aakash_jain@apple.com>
     2
     3        [ews] Enable Style queue on new EWS
     4        https://bugs.webkit.org/show_bug.cgi?id=201071
     5
     6        Reviewed by Jonathan Bedard.
     7
     8        * BuildSlaveSupport/ews-build/config.json: Enabled the scheduler for Style queue.
     9        * BuildSlaveSupport/ews-app/ews/views/statusbubble.py: Enabled style queue bubble on new EWS.
     10        * QueueStatusServer/config/queues.py: Removed style queue from old EWS.
     11        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js:
     12        (BubbleQueueServer): Removed style queue from bot-watcher's dashboard.
     13
    1142019-08-22  Fujii Hironori  <Hironori.Fujii@sony.com>
    215
  • trunk/Tools/QueueStatusServer/config/queues.py

    r248088 r249046  
    3333all_queue_names = [
    3434    "commit-queue",
    35     "style-queue",
    3635    "jsc-ews",
    3736    "jsc-mips-ews",
Note: See TracChangeset for help on using the changeset viewer.