[pypy-commit] buildbot default: oops pass this around

fijal noreply at buildbot.pypy.org
Wed Aug 3 15:52:09 CEST 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r551:6050cc5f5f7c
Date: 2011-08-03 15:52 +0200
http://bitbucket.org/pypy/buildbot/changeset/6050cc5f5f7c/

Log:	oops pass this around

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -220,6 +220,7 @@
     def __init__(self, platform='linux',
                  translationArgs=['-O2'], targetArgs=[],
                  app_tests=False,
+                 interpreter='pypy',
                  lib_python=False,
                  pypyjit=False
                  ):
@@ -227,7 +228,8 @@
 
         setup_steps(platform, self)
 
-        self.addStep(Translate(translationArgs, targetArgs))
+        self.addStep(Translate(translationArgs, targetArgs,
+                               interpreter=interpreter))
 
         if app_tests:
             if app_tests == True:


More information about the pypy-commit mailing list