[pypy-commit] buildbot default: move ARM and PPC runs to dedicated schedulers

bivab noreply at buildbot.pypy.org
Thu Jul 19 10:54:16 CEST 2012


Author: David Schneider <david.schneider at picle.org>
Branch: 
Changeset: r657:6210ede0806d
Date: 2012-07-19 10:54 +0200
http://bitbucket.org/pypy/buildbot/changeset/6210ede0806d/

Log:	move ARM and PPC runs to dedicated schedulers

diff --git a/bot2/pypybuildbot/master.py b/bot2/pypybuildbot/master.py
--- a/bot2/pypybuildbot/master.py
+++ b/bot2/pypybuildbot/master.py
@@ -252,13 +252,17 @@
             JITWIN32,                  # on aurora
             #JITFREEBSD64,              # on headless
             JITMACOSX64,               # on mvt's machine
-            JITONLYLINUXARM32,         # on hhu-arm
-            JITONLYLINUXPPC64,         # on gcc1
             ], branch=None, hour=3, minute=0),
 
         Nightly("nighly-4-00-py3k", [
             LINUX32,                   # on tannit32, uses 4 cores
             ], branch='py3k', hour=4, minute=0),
+        Nightly("nighly-1-00-arm", [
+            JITONLYLINUXARM32,         # on hhu-arm
+            ], branch='arm-jit-backend-2', hour=1, minute=0),
+        Nightly("nighly-1-00-ppc", [
+            JITONLYLINUXPPC64,         # on gcc1
+            ], branch='ppc-jit-backend', hour=1, minute=0),
 
     ],
 


More information about the pypy-commit mailing list