Tools/ChangeLog

 12019-07-17 Aakash Jain <aakash_jain@apple.com>
 2
 3 [ews-build] Enable iOS WK2 tester queue on new EWS
 4 https://bugs.webkit.org/show_bug.cgi?id=199867
 5
 6 Reviewed by NOBODY (OOPS!).
 7
 8 * BuildSlaveSupport/ews-build/config.json: Enabled the triggers for ios-wk2 queue.
 9 * BuildSlaveSupport/ews-app/ews/views/statusbubble.py: Enabled ios-sim (builder) and ios-wk2 (tester) bubbles.
 10
1112019-07-17 Russell Epstein <russell_e@apple.com>
212
313 Adding self to contributors.json
247516

Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py

@@import ews.config as config
3939class StatusBubble(View):
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', 'gtk', 'wpe', 'wincairo', 'api-ios', 'api-mac', 'bindings', 'ios-sim', 'ios-wk2', 'jsc', 'mac', 'mac-32bit', 'mac-32bit-wk2',
 42 ALL_QUEUES = ['ios', 'ios-sim', 'gtk', 'wpe', 'wincairo', 'ios-wk2', 'api-ios', 'api-mac', 'bindings', 'jsc', 'mac', 'mac-32bit', 'mac-32bit-wk2',
4343 'mac-debug', 'mac-debug-wk1', 'mac-wk1', 'mac-wk2', 'style', 'webkitperl', 'webkitpy', 'win']
44  ENABLED_QUEUES = ['ios', 'gtk', 'wpe', 'wincairo', 'api-ios', 'api-mac', 'bindings', 'webkitperl', 'webkitpy']
 44 ENABLED_QUEUES = ['ios', 'ios-sim', 'gtk', 'wpe', 'wincairo', 'ios-wk2', 'api-ios', 'api-mac', 'bindings', 'webkitperl', 'webkitpy']
4545 # FIXME: Auto-generate the queue's trigger relationship
4646 QUEUE_TRIGGERS = {
4747 'api-ios': 'ios-sim',
247516

Tools/BuildSlaveSupport/ews-build/config.json

311311 "platform": "ios-simulator-12",
312312 "configuration": "release",
313313 "architectures": ["x86_64"],
314  "triggers": ["api-tests-ios-sim-ews"],
 314 "triggers": ["api-tests-ios-sim-ews", "ios-12-sim-wk2-tests-ews"],
315315 "workernames": ["ews152", "ews154", "ews156", "ews157"]
316316 },
317317 {

453453 "type": "Try_Userpass",
454454 "name": "disabled",
455455 "port": 5556,
456  "builderNames": ["JSC-Tests-EWS", "iOS-12-Simulator-WK2-Tests-EWS", "macOS-High-Sierra-Release-WK2-Tests-EWS",
 456 "builderNames": ["JSC-Tests-EWS", "macOS-High-Sierra-Release-WK2-Tests-EWS",
457457 "macOS-High-Sierra-Release-WK1-Tests-EWS", "macOS-High-Sierra-Debug-Build-EWS", "Style-EWS", "Windows-EWS"]
458458 },
459459 {

465465 },
466466 {
467467 "type": "Triggerable",
 468 "name": "ios-12-sim-wk2-tests-ews",
 469 "builderNames": [
 470 "iOS-12-Simulator-WK2-Tests-EWS"
 471 ]
 472 },
 473 {
 474 "type": "Triggerable",
468475 "name": "api-tests-ios-sim-ews",
469476 "builderNames": [
470477 "API-Tests-iOS-Simulator-EWS"
247516