Changeset 246497 in webkit
- Timestamp:
- Jun 17, 2019, 8:33:14 AM (7 years ago)
- Location:
- trunk/Tools
- Files:
-
- 6 added
- 8 edited
-
BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/Catalina.png (added)
-
BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/Catalina@2x.png (added)
-
BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/IOS13.png (added)
-
BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/IOS13@2x.png (added)
-
BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/IOS13Simulator.png (added)
-
BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/IOS13Simulator@2x.png (added)
-
BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Dashboard.js (modified) (1 diff)
-
BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Styles/Main.css (modified) (2 diffs)
-
BuildSlaveSupport/ews-build/steps.py (modified) (1 diff)
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/common/version_name_map.py (modified) (1 diff)
-
Scripts/webkitpy/common/version_name_map_unittest.py (modified) (3 diffs)
-
Scripts/webkitpy/layout_tests/models/test_expectations.py (modified) (1 diff)
-
TestResultServer/static-dashboards/flakiness_dashboard.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Dashboard.js
r239859 r246497 26 26 Dashboard = { 27 27 Platform: { 28 macOSMojave: { name: "macos-mojave", readableName: "macOS Mojave", order: 1 }, 29 macOSHighSierra: { name: "macos-highsierra", readableName: "macOS High Sierra", order: 2 }, 28 macOSCatalina: { name: "macos-catalina", readableName: "macOS Catalina", order: 1 }, 29 macOSMojave: { name: "macos-mojave", readableName: "macOS Mojave", order: 2 }, 30 macOSHighSierra: { name: "macos-highsierra", readableName: "macOS High Sierra", order: 3 }, 30 31 iOS12Simulator: { name: "ios-simulator-12", readableName: "iOS 12 Simulator", order: 20 }, 31 32 iOS12Device: { name: "ios-12", readableName: "iOS 12", order: 25 }, -
trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Styles/Main.css
r239859 r246497 206 206 } 207 207 208 table.queue-grid tr.platform.ios-simulator-13 img.logo { 209 background: linear-gradient(155deg, #b1a8ed 16%,#aa3daa 50%); 210 content: -webkit-image-set(url(../Images/IOS13Simulator@2x.png) 2x, url(../Images/IOS13Simulator.png) 1x); 211 } 212 213 table.queue-grid tr.platform.ios-13 img.logo { 214 background: linear-gradient(155deg, #b1a8ed 16%,#aa3daa 50%); 215 content: -webkit-image-set(url(../Images/IOS13@2x.png) 2x, url(../Images/IOS13.png) 1x); 216 } 217 208 218 table.queue-grid tr.platform.macos-highsierra img.logo { 209 219 content: -webkit-image-set(url(../Images/HighSierra@2x.png) 2x, url(../Images/HighSierra.png) 1x); … … 212 222 table.queue-grid tr.platform.macos-mojave img.logo { 213 223 content: -webkit-image-set(url(../Images/Mojave@2x.png) 2x, url(../Images/Mojave.png) 1x); 224 } 225 226 table.queue-grid tr.platform.macos-catalina img.logo { 227 content: -webkit-image-set(url(../Images/Catalina@2x.png) 2x, url(../Images/Catalina.png) 1x); 214 228 } 215 229 -
trunk/Tools/BuildSlaveSupport/ews-build/steps.py
r246080 r246497 1087 1087 1088 1088 build_to_name_mapping = { 1089 '10.15': 'Catalina', 1089 1090 '10.14': 'Mojave', 1090 1091 '10.13': 'High Sierra', -
trunk/Tools/ChangeLog
r246493 r246497 1 2019-06-17 Jonathan Bedard <jbedard@apple.com> 2 3 webkitpy: Add macOS Catalina, iOS 13 4 https://bugs.webkit.org/show_bug.cgi?id=198492 5 6 Reviewed by Alexey Proskuryakov. 7 8 * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/Catalina.png: Added. 9 * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/Catalina@2x.png: Added. 10 * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/IOS13.png: Added. 11 * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/IOS13@2x.png: Added. 12 * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/IOS13Simulator.png: Added. 13 * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Images/IOS13Simulator@2x.png: Added. 14 * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Dashboard.js: 15 * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Styles/Main.css: 16 * BuildSlaveSupport/ews-build/steps.py: 17 * Scripts/webkitpy/common/version_name_map.py: 18 * Scripts/webkitpy/common/version_name_map_unittest.py: 19 * Scripts/webkitpy/layout_tests/models/test_expectations.py: 20 * TestResultServer/static-dashboards/flakiness_dashboard.js: 21 1 22 2019-06-17 Carlos Garcia Campos <cgarcia@igalia.com> 2 23 -
trunk/Tools/Scripts/webkitpy/common/version_name_map.py
r232877 r246497 61 61 'High Sierra': Version(10, 13), 62 62 'Mojave': Version(10, 14), 63 'Catalina': Version(10, 15), 63 64 }, 64 'ios': self._automap_to_major_version('iOS', minimum=Version(10), maximum=Version(1 2)),65 'tvos': self._automap_to_major_version('tvOS', minimum=Version(10), maximum=Version(1 2)),66 'watchos': self._automap_to_major_version('watchOS', minimum=Version(1), maximum=Version( 5)),65 'ios': self._automap_to_major_version('iOS', minimum=Version(10), maximum=Version(13)), 66 'tvos': self._automap_to_major_version('tvOS', minimum=Version(10), maximum=Version(13)), 67 'watchos': self._automap_to_major_version('watchOS', minimum=Version(1), maximum=Version(6)), 67 68 'win': { 68 69 'Win10': Version(10), -
trunk/Tools/Scripts/webkitpy/common/version_name_map_unittest.py
r232877 r246497 37 37 def test_mac_version_by_name(self): 38 38 map = VersionNameMap() 39 self.assertEqual(('mac', Version(10, 15)), map.from_name('Catalina')) 40 self.assertEqual(('mac', Version(10, 15)), map.from_name('catalina')) 39 41 self.assertEqual(('mac', Version(10, 14)), map.from_name('Mojave')) 40 42 self.assertEqual(('mac', Version(10, 14)), map.from_name('mojave')) … … 58 60 def test_mac_name_by_version(self): 59 61 map = VersionNameMap() 62 self.assertEqual('Catalina', map.to_name(version=Version(10, 15), platform='mac')) 60 63 self.assertEqual('Mojave', map.to_name(version=Version(10, 14), platform='mac')) 61 64 self.assertEqual('High Sierra', map.to_name(version=Version(10, 13), platform='mac')) … … 67 70 def test_ios_name_by_version(self): 68 71 map = VersionNameMap() 72 self.assertEqual('iOS 13', map.to_name(version=Version(13), platform='ios')) 69 73 self.assertEqual('iOS 12', map.to_name(version=Version(12), platform='ios')) 70 74 self.assertEqual('iOS 11', map.to_name(version=Version(11), platform='ios')) -
trunk/Tools/Scripts/webkitpy/layout_tests/models/test_expectations.py
r241329 r246497 227 227 _configuration_tokens_list = [ 228 228 'SnowLeopard', 'Lion', 'MountainLion', 'Mavericks', 'Yosemite', 'ElCapitan', # Legacy macOS 229 'Mac', 'Sierra', 'HighSierra', 'Mojave', 229 'Mac', 'Sierra', 'HighSierra', 'Mojave', 'Catalina', 230 230 'Win', 'XP', 'Vista', 'Win7', 231 231 'Linux', -
trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js
r245541 r246497 62 62 } 63 63 }, 64 'CATALINA': { 65 subPlatforms: { 66 'WK1': { fallbackPlatforms: ['APPLE_MAC_CATALINA', 'APPLE_MAC'] }, 67 'WK2': { fallbackPlatforms: ['APPLE_MAC_CATALINA', 'APPLE_MAC', 'WK2'], expectationsDirectory: 'mac-wk2'} 68 } 69 }, 64 70 } 65 71 }, … … 360 366 return 'WINCAIRO'; 361 367 368 if (string.contains(builderNameUpperCase, 'CATALINA')) 369 return determineWKPlatform(builderNameUpperCase, 'APPLE_MAC_CATALINA'); 362 370 if (string.contains(builderNameUpperCase, 'MOJAVE')) 363 371 return determineWKPlatform(builderNameUpperCase, 'APPLE_MAC_MOJAVE'); … … 713 721 'HighSierra': 'HIGHSIERRA', 714 722 'Mojave': 'MOJAVE', 723 'Catalina': 'CATALINA', 715 724 'Win7': 'WIN7', 716 725 'Win10': 'WIN10',
Note:
See TracChangeset
for help on using the changeset viewer.