[pypy-commit] buildbot issue-1759: platform and host attributes are not magic, this probably was a bug in the configuration

mattip noreply at buildbot.pypy.org
Tue Feb 10 22:49:32 CET 2015


Author: mattip <matti.picus at gmail.com>
Branch: issue-1759
Changeset: r928:766b7373be46
Date: 2015-02-10 20:47 +0200
http://bitbucket.org/pypy/buildbot/changeset/766b7373be46/

Log:	platform and host attributes are not magic, this probably was a bug
	in the configuration

diff --git a/bot2/pypybuildbot/master.py b/bot2/pypybuildbot/master.py
--- a/bot2/pypybuildbot/master.py
+++ b/bot2/pypybuildbot/master.py
@@ -146,14 +146,17 @@
     app_tests=True,
     )
 
-pypyJITBenchmarkFactory_tannit = pypybuilds.JITBenchmark()
+pypyJITBenchmarkFactory_tannit = pypybuilds.JITBenchmark(host='tannit')
 pypyJITBenchmarkFactory64_tannit = pypybuilds.JITBenchmark(platform='linux64',
+                                                           host='tannit',
                                                            postfix='-64')
 pypyJITBenchmarkFactory64_speed = pypybuilds.JITBenchmarkSingleRun(
     platform='linux64',
+    host='speed_python',
     postfix='-64')
 
 pypyNumpyCompatability = pypybuilds.NativeNumpyTests(platform='linux64')
+pypyNumpyCompatabilityWin = pypybuilds.NativeNumpyTests(platform='win32')
 
 #
 
@@ -477,7 +480,7 @@
                   {'name': NUMPY_WIN,
                    'slavenames': ["allegro_win32", "SalsaSalsa"],
                    'builddir': NUMPY_WIN,
-                   'factory': pypyNumpyCompatability,
+                   'factory': pypyNumpyCompatabilityWin,
                    "locks": [WinSlaveLock.access('counting')],
                    'category': 'numpy',
                   },


More information about the pypy-commit mailing list