[pypy-commit] buildbot default: add a prefix parameter to the crosstranslation builds to run the packaging in a chroot (needed for cffi)

bivab noreply at buildbot.pypy.org
Sat Apr 6 17:59:18 CEST 2013


Author: David Schneider <david.schneider at picle.org>
Branch: 
Changeset: r769:767583db1da9
Date: 2013-04-06 17:58 +0200
http://bitbucket.org/pypy/buildbot/changeset/767583db1da9/

Log:	add a prefix parameter to the crosstranslation builds to run the
	packaging in a chroot (needed for cffi)

diff --git a/bot2/pypybuildbot/master.py b/bot2/pypybuildbot/master.py
--- a/bot2/pypybuildbot/master.py
+++ b/bot2/pypybuildbot/master.py
@@ -178,11 +178,12 @@
                             ]),
         timeout=6 * 3600)
 pypyJitOnlyOwnTestFactoryARM = pypybuilds.Own(cherrypick="jit", timeout=2 * 3600)
-pypyOwnTestFactoryARM = pypybuilds.Own(timeout=2*3600)
+pypyOwnTestFactoryARM = pypybuilds.Own(timeout=2 * 3600)
 pypyCrossTranslationFactoryARM = pypybuilds.NightlyBuild(
-    translationArgs=crosstranslationargs+['-O2'],
+    translationArgs=crosstranslationargs + ['-O2'],
     platform='linux-armel',
     interpreter='pypy',
+    prefix='schroot -c armel',
     trigger='APPLVLLINUXARM_scheduler')
 
 pypyJITCrossTranslationFactoryARM = pypybuilds.NightlyBuild(
@@ -191,6 +192,7 @@
                         + crosstranslationjitargs),
     platform='linux-armel',
     interpreter='pypy',
+    prefix='schroot -c armel',
     trigger='JITLINUXARM_scheduler')
 
 pypyARMJITTranslatedTestFactory = pypybuilds.TranslatedTests(


More information about the pypy-commit mailing list