Author: David Schneider <david.schnei...@picle.org> Branch: Changeset: r860:bde33c8ace0d Date: 2013-09-08 16:01 +0200 http://bitbucket.org/pypy/buildbot/changeset/bde33c8ace0d/
Log: add a builder to run the buildbot tests diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -34,3 +34,5 @@ *-win-32 *-win-x86-32 *-win-x86-64 +slave/pypy-buildbot +master/pypy-buildbot diff --git a/bot2/pypybuildbot/master.py b/bot2/pypybuildbot/master.py --- a/bot2/pypybuildbot/master.py +++ b/bot2/pypybuildbot/master.py @@ -180,6 +180,8 @@ JITBENCH64_2 = 'jit-benchmark-linux-x86-64-2' CPYTHON_64 = "cpython-2-benchmark-x86-64" +# buildbot builder +PYPYBUILDBOT = 'pypy-buildbot' extra_opts = {'xerxes': {'keepalive_interval': 15}, 'aurora': {'max_builds': 1}, @@ -213,6 +215,8 @@ JITFREEBSD864, # on ananke JITFREEBSD964, # on exarkun's freebsd JITMACOSX64, # on xerxes + # buildbot selftest + PYPYBUILDBOT # on cobra ], branch='default', hour=0, minute=0), Nightly("nightly-2-00", [ @@ -228,8 +232,9 @@ Nightly("nighly-ppc", [ JITONLYLINUXPPC64, # on gcc1 ], branch='ppc-jit-backend', hour=1, minute=0), - CustomForceScheduler('Force Scheduler', + CustomForceScheduler('Force Scheduler', builderNames=[ + PYPYBUILDBOT, LINUX32, LINUX64, INDIANA32, @@ -420,6 +425,13 @@ 'factory': pypyOwnTestFactoryIndiana, 'category': 'openindiana32', }, + {'name': PYPYBUILDBOT, + 'slavenames': ['cobra'], + 'builddir': PYPYBUILDBOT, + 'factory': pypybuilds.PyPyBuildbotTestFactory(), + 'category': 'buildbot', + } + ] + ARM.builders, # http://readthedocs.org/docs/buildbot/en/latest/tour.html#debugging-with-manhole _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit