/hg/buildbot: 2 new changesets

vanaltj at icedtea.classpath.org vanaltj at icedtea.classpath.org
Mon Aug 20 13:04:47 PDT 2012


changeset ccb5ce1a2b84 in /hg/buildbot
details: http://icedtea.classpath.org/hg/buildbot?cmd=changeset;node=ccb5ce1a2b84
author: Jon VanAlten <jon.vanalten at redhat.com>
date: Mon Aug 20 15:44:55 2012 -0400

	Backed out changeset 1bedbc59aeed


changeset 691ce9af397b in /hg/buildbot
details: http://icedtea.classpath.org/hg/buildbot?cmd=changeset;node=691ce9af397b
author: Jon VanAlten <jon.vanalten at redhat.com>
date: Mon Aug 20 15:55:59 2012 -0400

	Add a factory that specifies --disable-docs, use for fedora slaves.


diffstat:

 icedtea/master.cfg |  34 ++++++++++++++++++++++++----------
 1 files changed, 24 insertions(+), 10 deletions(-)

diffs (74 lines):

diff -r 1bedbc59aeed -r 691ce9af397b icedtea/master.cfg
--- a/icedtea/master.cfg	Fri Aug 17 10:30:40 2012 -0400
+++ b/icedtea/master.cfg	Mon Aug 20 15:55:59 2012 -0400
@@ -218,9 +218,7 @@
 f1f15.addStep(Mercurial(baseURL=hgrepo, workdir="src", mode="update"))
 f1f15.addStep(ShellCommand(command=["./autogen.sh"], workdir="src", description="autogen"))
 f1f15.addStep(ShellCommand(command=["rm", "-rf", "build"], workdir=".", description="clean build dir"))
-f1f15.addStep(Configure(command=[ "../src/configure",
-                                  "--disable-docs"],
-                                workdir="build"))
+f1f15.addStep(Configure(command=["../src/configure"], workdir="build"))
 f1f15.addStep(Compile(command=["make", "-j4"], workdir="build"))
 f1f15.addStep(JTRegCheck(command=["make", "check"], workdir="build"))
 icedtea_web_builder_f15_x86 = { 'name': "icedtea-web-f15-x86",
@@ -232,9 +230,7 @@
 f1f16.addStep(Mercurial(baseURL=hgrepo, workdir="src", mode="update"))
 f1f16.addStep(ShellCommand(command=["./autogen.sh"], workdir="src", description="autogen"))
 f1f16.addStep(ShellCommand(command=["rm", "-rf", "build"], workdir=".", description="clean build dir"))
-f1f16.addStep(Configure(command=[ "../src/configure",
-                                  "--disable-docs"],
-                                workdir="build"))
+f1f16.addStep(Configure(command=["../src/configure"], workdir="build"))
 f1f16.addStep(Compile(command=["make", "-j4"], workdir="build"))
 f1f16.addStep(JTRegCheck(command=["make", "check"], workdir="build"))
 icedtea_web_builder_f16_x86 = { 'name': "icedtea-web-f16-x86",
@@ -474,6 +470,24 @@
                               flunkOnFailure=False, alwaysRun=True,
                               description="killall"))
 
+fnodocs = factory.BuildFactory()
+fnodocs.addStep(Mercurial(baseURL=hgrepo, workdir="src", mode="update"))
+fnodocs.addStep(ShellCommand(command=["./autogen.sh"], workdir="src",
+                              description="autogen"))
+fnodocs.addStep(ShellCommand(command=["rm", "-rf", "build"], workdir=".",
+                           description="clean build dir"))
+fnodocs.addStep(Configure(command=["../src/configure",
+                                    "--disable-docs",
+                                    "--with-parallel-jobs=2"],
+                           workdir="build"))
+fnodocs.addStep(Compile(workdir="build"))
+fnodocs.addStep(JTRegCheck(command=["make", "check"], description="check",
+                            workdir="build"))
+fnodocs.addStep(ShellCommand(command=["killall", "-q", "-v", "-s", "KILL",
+                                       "java"], workdir=".",
+                              flunkOnFailure=False, alwaysRun=True,
+                              description="killall"))
+
 f3an7 = factory.BuildFactory()
 f3an7.addStep(Mercurial(baseURL=hgrepo, workdir="src", mode="update"))
 f3an7.addStep(ShellCommand(command=["./autogen.sh"],
@@ -874,19 +888,19 @@
 icedtea6_builder_f15_x86 = { 'name': "icedtea6-f15-x86",
                            'slavenames': ["fedora15-x86"],
                            'builddir': "icedtea6-f15-x86",
-                           'factory': fdefault }
+                           'factory': fnodocs }
 icedtea6_builder_f16_x86 = { 'name': "icedtea6-f16-x86",
                            'slavenames': ["fedora16-x86"],
                            'builddir': "icedtea6-f16-x86",
-                           'factory': fdefault }
+                           'factory': fnodocs }
 icedtea7_builder_f15_x86 = { 'name': "icedtea7-f15-x86",
                            'slavenames': ["fedora15-x86"],
                            'builddir': "icedtea7-f15-x86",
-                           'factory': fdefault }
+                           'factory': fnodocs }
 icedtea7_builder_f16_x86 = { 'name': "icedtea7-f16-x86",
                            'slavenames': ["fedora16-x86"],
                            'builddir': "icedtea7-f16-x86",
-                           'factory': fdefault }
+                           'factory': fnodocs }
 icedtea6_builder_quick_arm_natty = { 'name': "icedtea6-natty-armv7l-quick",
                            'slavenames': ["natty-armv7l"],
                            'builddir': "icedtea6-natty-armv7l-quick",



More information about the distro-pkg-dev mailing list