Title: [197883] trunk/Tools
Revision
197883
Author
[email protected]
Date
2016-03-09 13:44:00 -0800 (Wed, 09 Mar 2016)

Log Message

Stop building armv7 on iOS device builders
https://bugs.webkit.org/show_bug.cgi?id=155246

Reviewed by David Kilzer.

* BuildSlaveSupport/build.webkit.org-config/config.json: Building both armv7 and
armv7s makes the bots unnecessarily slow. We can catch super rare v7-only regressions
elsewhere.

* Scripts/webkitpy/common/config/ews.json: Changed EWS to match, as we always want
EWS configuration to be verified by buildbot queues.

* Scripts/webkitdirs.pm:
* Scripts/webkitpy/port/ios.py:
Changed default to arm64. I think that the default is probably not used in any
practical scenarios, but it's nice to make it more sensible.

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/config.json (197882 => 197883)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/config.json	2016-03-09 21:31:03 UTC (rev 197882)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/config.json	2016-03-09 21:44:00 UTC (rev 197883)
@@ -208,7 +208,7 @@
                     },
                     {
                       "name": "Apple iOS 9 Release (Build)", "type": "Build", "builddir": "ios-9-release",
-                      "platform": "ios-9", "configuration": "release", "architectures": ["armv7", "armv7s", "arm64"],
+                      "platform": "ios-9", "configuration": "release", "architectures": ["armv7s", "arm64"],
                       "slavenames": ["bot407"]
                     },
                     {

Modified: trunk/Tools/ChangeLog (197882 => 197883)


--- trunk/Tools/ChangeLog	2016-03-09 21:31:03 UTC (rev 197882)
+++ trunk/Tools/ChangeLog	2016-03-09 21:44:00 UTC (rev 197883)
@@ -1,5 +1,24 @@
 2016-03-09  Alexey Proskuryakov  <[email protected]>
 
+        Stop building armv7 on iOS device builders
+        https://bugs.webkit.org/show_bug.cgi?id=155246
+
+        Reviewed by David Kilzer.
+
+        * BuildSlaveSupport/build.webkit.org-config/config.json: Building both armv7 and
+        armv7s makes the bots unnecessarily slow. We can catch super rare v7-only regressions
+        elsewhere.
+
+        * Scripts/webkitpy/common/config/ews.json: Changed EWS to match, as we always want
+        EWS configuration to be verified by buildbot queues.
+
+        * Scripts/webkitdirs.pm:
+        * Scripts/webkitpy/port/ios.py:
+        Changed default to arm64. I think that the default is probably not used in any
+        practical scenarios, but it's nice to make it more sensible.
+
+2016-03-09  Alexey Proskuryakov  <[email protected]>
+
         Add iOS Simulator EWS to bot watcher's dashboard
         https://bugs.webkit.org/show_bug.cgi?id=155220
 

Modified: trunk/Tools/Scripts/webkitdirs.pm (197882 => 197883)


--- trunk/Tools/Scripts/webkitdirs.pm	2016-03-09 21:31:03 UTC (rev 197882)
+++ trunk/Tools/Scripts/webkitdirs.pm	2016-03-09 21:44:00 UTC (rev 197883)
@@ -342,7 +342,7 @@
             } elsif ($xcodeSDK =~ /^iphonesimulator/) {
                 $architecture = 'x86_64';
             } elsif ($xcodeSDK =~ /^iphoneos/) {
-                $architecture = 'armv7';
+                $architecture = 'arm64';
             }
         }
     } elsif (isCMakeBuild()) {

Modified: trunk/Tools/Scripts/webkitpy/common/config/ews.json (197882 => 197883)


--- trunk/Tools/Scripts/webkitpy/common/config/ews.json	2016-03-09 21:31:03 UTC (rev 197882)
+++ trunk/Tools/Scripts/webkitpy/common/config/ews.json	2016-03-09 21:44:00 UTC (rev 197883)
@@ -19,7 +19,7 @@
     },
     "iOS EWS": {
         "port": "ios",
-        "architecture": "armv7"
+        "architecture": "armv7s"
     },
     "iOS Simulator EWS": {
         "port": "ios-simulator-wk2",

Modified: trunk/Tools/Scripts/webkitpy/port/ios.py (197882 => 197883)


--- trunk/Tools/Scripts/webkitpy/port/ios.py	2016-03-09 21:31:03 UTC (rev 197882)
+++ trunk/Tools/Scripts/webkitpy/port/ios.py	2016-03-09 21:44:00 UTC (rev 197883)
@@ -47,7 +47,7 @@
     port_name = "ios"
 
     ARCHITECTURES = ['armv7', 'armv7s', 'arm64']
-    DEFAULT_ARCHITECTURE = 'armv7'
+    DEFAULT_ARCHITECTURE = 'arm64'
     VERSION_FALLBACK_ORDER = ['ios-7', 'ios-8', 'ios-9']
 
     @classmethod
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to