Title: [283907] trunk/Tools
Revision
283907
Author
[email protected]
Date
2021-10-11 10:34:25 -0700 (Mon, 11 Oct 2021)

Log Message

Bring up an iOS GPU Process tester
https://bugs.webkit.org/show_bug.cgi?id=231515

Reviewed by Jonathan Bedard.

* CISupport/build-webkit-org/config.json:
* CISupport/build-webkit-org/factories_unittest.py:

Modified Paths

Diff

Modified: trunk/Tools/CISupport/build-webkit-org/config.json (283906 => 283907)


--- trunk/Tools/CISupport/build-webkit-org/config.json	2021-10-11 17:22:53 UTC (rev 283906)
+++ trunk/Tools/CISupport/build-webkit-org/config.json	2021-10-11 17:34:25 UTC (rev 283907)
@@ -45,7 +45,6 @@
                     { "name": "bot687", "platform": "mac-catalina" },
                     { "name": "bot688", "platform": "mac-catalina" },
 
-
                     { "name": "bot187", "platform": "*" },
                     { "name": "bot179", "platform": "*" },
                     { "name": "bot183", "platform": "*" },
@@ -52,7 +51,6 @@
                     { "name": "bot184", "platform": "*" },
                     { "name": "bot185", "platform": "*" },
                     { "name": "bot198", "platform": "*" },
-                    { "name": "bot210", "platform": "*" },
                     { "name": "bot611", "platform": "*" },
                     { "name": "bot612", "platform": "*" },
                     { "name": "bot613", "platform": "*" },
@@ -59,6 +57,7 @@
                     { "name": "bot600", "platform": "*" },
                     { "name": "bot684", "platform": "*" },
 
+                    { "name": "bot210", "platform": "ios-simulator-15" },
                     { "name": "bot673", "platform": "ios-15" },
                     { "name": "bot614", "platform": "ios-simulator-15" },
                     { "name": "bot651", "platform": "ios-simulator-15" },
@@ -274,7 +273,7 @@
                     {
                       "name": "Apple-iOS-15-Simulator-Release-Build", "factory": "BuildFactory", "builddir": "ios-simulator-15-release",
                       "platform": "ios-simulator-15", "configuration": "release", "architectures": ["x86_64", "arm64"],
-                      "triggers": ["ios-simulator-15-release-tests-wk2", "ipados-simulator-15-release-tests-wk2"],
+                      "triggers": ["ios-simulator-15-release-gpuprocess-arm64-tests-wk2", "ios-simulator-15-release-tests-wk2", "ipados-simulator-15-release-tests-wk2"],
                       "workernames": ["bot614", "bot641", "bot682", "bot685"]
                     },
                     {
@@ -284,6 +283,12 @@
                       "workernames": ["bot694", "bot695"]
                     },
                     {
+                      "name": "Apple-iOS-15-Simulator-Release-GPUProcess-arm64-WK2-Tests", "factory": "TestAllButJSCFactory", "builddir": "ios-simulator-15-release-gpuprocess-arm64-tests-wk2",
+                      "platform": "ios-simulator-15", "configuration": "release", "architectures": ["x86_64", "arm64"], "device_model": "iphone",
+                      "additionalArguments": ["--no-retry-failures", "--use-gpu-process"],
+                      "workernames": ["bot210"]
+                    },
+                    {
                       "name": "Apple-iOS-15-Simulator-Release-WK2-Tests", "factory": "TestAllButJSCFactory", "builddir": "ios-simulator-15-release-tests-wk2",
                       "platform": "ios-simulator-15", "configuration": "release", "architectures": ["x86_64", "arm64"], "device_model": "iphone",
                       "additionalArguments": ["--no-retry-failures"],
@@ -665,6 +670,9 @@
                     { "type": "PlatformSpecificScheduler", "platform": "win", "branch": "trunk", "treeStableTimer": 45.0,
                       "builderNames": ["Apple-Win-10-Release-Build", "Apple-Win-10-Debug-Build"]
                     },
+                    { "type": "Triggerable", "name": "ios-simulator-15-release-gpuprocess-arm64-tests-wk2",
+                      "builderNames": ["Apple-iOS-15-Simulator-Release-GPUProcess-arm64-WK2-Tests"]
+                    },
                     { "type": "Triggerable", "name": "ios-simulator-15-release-tests-wk2",
                       "builderNames": ["Apple-iOS-15-Simulator-Release-WK2-Tests"]
                     },

Modified: trunk/Tools/CISupport/build-webkit-org/factories_unittest.py (283906 => 283907)


--- trunk/Tools/CISupport/build-webkit-org/factories_unittest.py	2021-10-11 17:22:53 UTC (rev 283906)
+++ trunk/Tools/CISupport/build-webkit-org/factories_unittest.py	2021-10-11 17:34:25 UTC (rev 283907)
@@ -586,6 +586,30 @@
             'transfer-to-s3',
             'trigger'
         ],
+        'Apple-iOS-15-Simulator-Release-GPUProcess-arm64-WK2-Tests': [
+            'configure-build',
+            'configuration',
+            'clean-and-update-working-directory',
+            'show-identifier',
+            'kill-old-processes',
+            'delete-WebKitBuild-directory',
+            'delete-stale-build-files',
+            'download-built-product',
+            'extract-built-product',
+            'wait-for-crash-collection',
+            'layout-test',
+            'dashboard-tests',
+            'archive-test-results',
+            'upload',
+            'extract-test-results',
+            'set-permissions',
+            'run-api-tests',
+            'webkitpy-test',
+            'webkitperl-test',
+            'bindings-generation-tests',
+            'builtins-generator-tests',
+            'trigger-crash-log-submission'
+        ],
         'Apple-iOS-15-Simulator-Release-WK2-Tests': [
             'configure-build',
             'configuration',

Modified: trunk/Tools/ChangeLog (283906 => 283907)


--- trunk/Tools/ChangeLog	2021-10-11 17:22:53 UTC (rev 283906)
+++ trunk/Tools/ChangeLog	2021-10-11 17:34:25 UTC (rev 283907)
@@ -1,3 +1,13 @@
+2021-10-11  Ryan Haddad  <[email protected]>
+
+        Bring up an iOS GPU Process tester
+        https://bugs.webkit.org/show_bug.cgi?id=231515
+
+        Reviewed by Jonathan Bedard.
+
+        * CISupport/build-webkit-org/config.json:
+        * CISupport/build-webkit-org/factories_unittest.py:
+
 2021-10-11  Alex Christensen  <[email protected]>
 
         Prepare to switch from WTF::Variant to std::variant
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to