[pypy-commit] buildbot default: add freebsd8 build on ananke

bdkearns noreply at buildbot.pypy.org
Fri Apr 12 21:38:55 CEST 2013


Author: Brian Kearns <bdkearns at gmail.com>
Branch: 
Changeset: r781:7c9a2cfe7eaf
Date: 2013-04-12 15:38 -0400
http://bitbucket.org/pypy/buildbot/changeset/7c9a2cfe7eaf/

Log:	add freebsd8 build on ananke

diff --git a/bot2/pypybuildbot/master.py b/bot2/pypybuildbot/master.py
--- a/bot2/pypybuildbot/master.py
+++ b/bot2/pypybuildbot/master.py
@@ -180,7 +180,8 @@
 JITMACOSX64 = "pypy-c-jit-macosx-x86-64"
 JITWIN32 = "pypy-c-jit-win-x86-32"
 JITWIN64 = "pypy-c-jit-win-x86-64"
-JITFREEBSD64 = 'pypy-c-jit-freebsd-7-x86-64'
+JITFREEBSD764 = 'pypy-c-jit-freebsd-7-x86-64'
+JITFREEBSD864 = 'pypy-c-jit-freebsd-8-x86-64'
 JITFREEBSD964 = 'pypy-c-jit-freebsd-9-x86-64'
 JITINDIANA32 = "pypy-c-jit-indiana-x86-32"
 
@@ -215,7 +216,8 @@
             # other platforms
             MACOSX32,                  # on minime
             JITWIN32,                  # on aurora
-            JITFREEBSD64,              # on headless
+            JITFREEBSD764,             # on headless
+            JITFREEBSD864,             # on ananke
             JITFREEBSD964,             # on exarkun's freebsd
             JITMACOSX64,               # on xerxes
             ], branch=None, hour=0, minute=0),
@@ -358,9 +360,15 @@
                    'factory' : pypyJITTranslatedTestFactoryWin,
                    'category' : 'win32',
                    },
-                  {"name" : JITFREEBSD64,
+                  {"name" : JITFREEBSD764,
                    "slavenames": ['headless'],
-                   'builddir' : JITFREEBSD64,
+                   'builddir' : JITFREEBSD764,
+                   'factory' : pypyJITTranslatedTestFactoryFreeBSD,
+                   "category": 'freebsd64'
+                   },
+                  {"name": JITFREEBSD864,
+                   "slavenames": ['ananke'],
+                   'builddir' : JITFREEBSD864,
                    'factory' : pypyJITTranslatedTestFactoryFreeBSD,
                    "category": 'freebsd64'
                    },


More information about the pypy-commit mailing list