[pypy-svn] buildbot commit 3d998297bdc4: add a builder for win32 own tests (without scheduling them nightly)

Bitbucket commits-noreply at bitbucket.org
Mon Dec 13 09:10:01 CET 2010


# HG changeset patch -- Bitbucket.org
# Project buildbot
# URL http://bitbucket.org/pypy/buildbot/overview
# User antocuni
# Date 1289382894 0
# Node ID 3d998297bdc4880b009b6c2ac38cd4a0d592e90f
# Parent  e4dfbfe4da0b34ae6dc4b394959e3f9f64a34eb9
add a builder for win32 own tests (without scheduling them nightly)

--- a/bot2/pypybuildbot/master.py
+++ b/bot2/pypybuildbot/master.py
@@ -167,7 +167,7 @@ pypyJITBenchmarkFactory = pypybuilds.JIT
 LINUX32 = "own-linux-x86-32"
 LINUX64 = "own-linux-x86-64"
 MACOSX32 =  "own-macosx-x86-32"
-#WIN32 = "own-win-x86-32"
+WIN32 = "own-win-x86-32"
 APPLVLLINUX32 = "pypy-c-app-level-linux-x86-32"
 APPLVLLINUX64 = "pypy-c-app-level-linux-x86-64"
 STACKLESSAPPLVLLINUX32 = "pypy-c-stackless-app-level-linux-x86-32"
@@ -239,7 +239,13 @@ BuildmasterConfig = {
                    "builddir": MACOSX32,
                    "factory": pypyOwnTestFactory,
                    "category": 'mac'
-                  },                  
+                  },
+                  {"name": WIN32,
+                   "slavenames": ["bigboard"],
+                   "builddir": WIN32,
+                   "factory": pypyOwnTestFactoryWin,
+                   "category": 'own'
+                  },
                   {"name": APPLVLLINUX32,
                    "slavenames": ["bigdogvm1", "tannit32"],
                    "builddir": APPLVLLINUX32,



More information about the Pypy-commit mailing list