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

arigo at codespeak.net arigo at codespeak.net
Fri Sep 24 14:24:00 CEST 2010


Author: arigo
Date: Fri Sep 24 14:23:58 2010
New Revision: 77341

Modified:
   pypy/build/bot2/pypybuildbot/master.py
Log:
Fix: use platform='linux64' on the 64-bits JIT build.
Otherwise, they get the same name as the linux32 build
and the file in /nightly/trunk overwrite each other :-(


Modified: pypy/build/bot2/pypybuildbot/master.py
==============================================================================
--- pypy/build/bot2/pypybuildbot/master.py	(original)
+++ pypy/build/bot2/pypybuildbot/master.py	Fri Sep 24 14:23:58 2010
@@ -128,6 +128,14 @@
     pypyjit=True,
     app_tests=True,
     )
+pypyJITTranslatedTestFactory64 = pypybuilds.Translated(
+    translationArgs=jit_translation_args,
+    targetArgs=[],
+    lib_python=True,
+    pypyjit=True,
+    app_tests=True,
+    platform='linux64',
+    )
 
 pypyJITTranslatedTestFactoryOSX = pypybuilds.Translated(
     platform='osx',
@@ -277,7 +285,7 @@
                   {'name': JITLINUX64,
                    'slavenames': ['tannit64'],
                    'builddir': JITLINUX64,
-                   'factory': pypyJITTranslatedTestFactory,
+                   'factory': pypyJITTranslatedTestFactory64,
                    'category': 'jit',
                   },
                   {"name" : JITMACOSX32,



More information about the Pypy-commit mailing list