[pypy-svn] r75254 - pypy/build/bot2/pypybuildbot

fijal at codespeak.net fijal at codespeak.net
Fri Jun 11 02:17:21 CEST 2010


Author: fijal
Date: Fri Jun 11 02:17:19 2010
New Revision: 75254

Modified:
   pypy/build/bot2/pypybuildbot/master.py
Log:
Use different platform for 64bit, to differentiate a nightly build


Modified: pypy/build/bot2/pypybuildbot/master.py
==============================================================================
--- pypy/build/bot2/pypybuildbot/master.py	(original)
+++ pypy/build/bot2/pypybuildbot/master.py	Fri Jun 11 02:17:19 2010
@@ -57,6 +57,9 @@
 
 pypyTranslatedAppLevelTestFactory = pypybuilds.Translated(lib_python=True,
                                                           app_tests=True)
+pypyTranslatedAppLevelTestFactory64 = pypybuilds.Translated(lib_python=True,
+                                                            app_tests=True,
+                                                            platform='linux64')
 
 pypyStacklessTranslatedAppLevelTestFactory = pypybuilds.Translated(
     translationArgs=["-O2", "--stackless"], targetArgs=[],
@@ -175,7 +178,7 @@
                   {"name": APPLVLLINUX64,
                    "slavenames": ["tannit64"],
                    "builddir": APPLVLLINUX64,
-                   "factory": pypyTranslatedAppLevelTestFactory,
+                   "factory": pypyTranslatedAppLevelTestFactory64,
                    "category": "applevel64"
                   },
                   {"name": STACKLESSAPPLVLLINUX32,



More information about the Pypy-commit mailing list