[152490] contrib/buildbot-test

raimue at macports.org raimue at macports.org
Sun Sep 11 05:34:56 PDT 2016


Revision: 152490
          https://trac.macports.org/changeset/152490
Author:   raimue at macports.org
Date:     2016-09-11 05:34:55 -0700 (Sun, 11 Sep 2016)
Log Message:
-----------
buildbot: move build platforms to slaves.json

Modified Paths:
--------------
    contrib/buildbot-test/master.cfg
    contrib/buildbot-test/slaves.json.sample

Modified: contrib/buildbot-test/master.cfg
===================================================================
--- contrib/buildbot-test/master.cfg	2016-09-11 11:07:27 UTC (rev 152489)
+++ contrib/buildbot-test/master.cfg	2016-09-11 12:34:55 UTC (rev 152490)
@@ -43,9 +43,6 @@
 path_base  = "/usr/bin:/bin:/usr/sbin:/sbin"
 path_ports = os.path.join(toolsprefix, "bin") + ":" + path_base
 
-# TODO: the following list should be configured in slaves.json
-build_platforms = ["10.6_x86_64", "10.6_x86_64_legacy", "10.6_i386", "10.6_i386_legacy", "10.7_x86_64", "10.7_x86_64_legacy", "10.8_x86_64", "10.8_x86_64_legacy", "10.9_x86_64", "10.10_x86_64", "10.11_x86_64"]
-
 # Allow spaces and tabs in property values
 import re
 c['validation'] = {
@@ -64,7 +61,11 @@
 
 with open(_path('slaves.json')) as f:
     slavedata = json.load(f)
-for slave, pwd in slavedata.items():
+
+# convert unicode to byte strings
+build_platforms = [s.encode('utf-8') for s in slavedata['build_platforms']]
+
+for slave, pwd in slavedata['slaves'].items():
     c['slaves'].append(BuildSlave(slave, pwd))
 
 
@@ -438,7 +439,7 @@
 # XXX: slavenames assignment should be automatic and more generic
 portsslaves = {}
 baseslaves = {}
-slavenames = slavedata.keys()
+slavenames = slavedata['slaves'].keys()
 for plat in build_platforms:
     baseslaves[plat]  = filter(lambda x: x.endswith(plat+"-base"),  slavenames)
     portsslaves[plat] = filter(lambda x: x.endswith(plat+"-ports"), slavenames)

Modified: contrib/buildbot-test/slaves.json.sample
===================================================================
--- contrib/buildbot-test/slaves.json.sample	2016-09-11 11:07:27 UTC (rev 152489)
+++ contrib/buildbot-test/slaves.json.sample	2016-09-11 12:34:55 UTC (rev 152490)
@@ -1,19 +1,34 @@
 {
-    "base-10.6_x86_64": "",
-    "ports-10.6_i386": "",
-    "ports-10.6_i386_legacy": "",
-    "ports-10.6_x86_64": "",
-    "ports-10.6_x86_64_legacy": "",
-    "base-10.7_x86_64": "",
-    "ports-10.7_x86_64": "",
-    "ports-10.7_x86_64_legacy": "",
-    "base-10.8_x86_64": "",
-    "ports-10.8_x86_64": "",
-    "ports-10.8_x86_64_legacy": "",
-    "base-10.9_x86_64": "",
-    "ports-10.9_x86_64": "",
-    "base-10.10_x86_64": "",
-    "ports-10.10_x86_64": "",
-    "base-10.11_x86_64": "",
-    "ports-10.11_x86_64": ""
+    "build_platforms": [
+        "10.6_x86_64",
+        "10.6_x86_64_legacy",
+        "10.6_i386",
+        "10.6_i386_legacy",
+        "10.7_x86_64",
+        "10.7_x86_64_legacy",
+        "10.8_x86_64",
+        "10.8_x86_64_legacy",
+        "10.9_x86_64",
+        "10.10_x86_64",
+        "10.11_x86_64"
+    ],
+    "slaves": {
+        "base-10.6_x86_64": "",
+        "ports-10.6_i386": "",
+        "ports-10.6_i386_legacy": "",
+        "ports-10.6_x86_64": "",
+        "ports-10.6_x86_64_legacy": "",
+        "base-10.7_x86_64": "",
+        "ports-10.7_x86_64": "",
+        "ports-10.7_x86_64_legacy": "",
+        "base-10.8_x86_64": "",
+        "ports-10.8_x86_64": "",
+        "ports-10.8_x86_64_legacy": "",
+        "base-10.9_x86_64": "",
+        "ports-10.9_x86_64": "",
+        "base-10.10_x86_64": "",
+        "ports-10.10_x86_64": "",
+        "base-10.11_x86_64": "",
+        "ports-10.11_x86_64": ""
+    }
 }
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20160911/8b985534/attachment.html>


More information about the macports-changes mailing list