[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[vidalia-svn] r4322: Make the builders run "make -k" instead of just "make". (buildbot/trunk)
Author: edmanm
Date: 2010-06-25 19:49:14 -0400 (Fri, 25 Jun 2010)
New Revision: 4322
Modified:
buildbot/trunk/master.cfg
Log:
Make the builders run "make -k" instead of just "make".
Modified: buildbot/trunk/master.cfg
===================================================================
--- buildbot/trunk/master.cfg 2010-06-25 22:07:05 UTC (rev 4321)
+++ buildbot/trunk/master.cfg 2010-06-25 23:49:14 UTC (rev 4322)
@@ -107,14 +107,14 @@
vidalia_default_factory.addStep(SVN, mode="copy",
baseURL="http://svn.vidalia-project.net/svn/")
vidalia_default_factory.addStep(Configure, command=["cmake", "."])
-vidalia_default_factory.addStep(Compile, command=["make", "VERBOSE=1"])
+vidalia_default_factory.addStep(Compile, command=["make", "-k", "VERBOSE=1"])
# Build factory for Mac OS X 10.6 builders without a 64-bit Qt
vidalia_osx_sl_factory = factory.BuildFactory()
vidalia_osx_sl_factory.addStep(SVN, mode="copy",
baseURL="http://svn.vidalia-project.net/svn/")
vidalia_osx_sl_factory.addStep(Configure, command=["cmake", "-DOSX_FORCE_32BIT=1", "."])
-vidalia_osx_sl_factory.addStep(Compile, command=["make", "VERBOSE=1"])
+vidalia_osx_sl_factory.addStep(Compile, command=["make", "-k", "VERBOSE=1"])
# Build factory for Windows/MinGW builders
vidalia_mingw_factory = factory.BuildFactory()
@@ -131,7 +131,7 @@
env={'NOCONF' : "1" }, haltOnFailure=True)
tor_master_factory.addStep(Configure, command=["./configure", "--enable-gcc-warnings",
"--disable-asciidoc"])
-tor_master_factory.addStep(Compile, command=["make"])
+tor_master_factory.addStep(Compile, command=["make", "-k"])
tor_master_factory.addStep(Test, command=["src/test/test", "--debug"])
tor_master_msys_factory = factory.BuildFactory()
@@ -150,7 +150,7 @@
tor_maint_021_factory.addStep(ShellCommand, name="autogen", command=["./autogen.sh"],
env={'NOCONF' : "1" }, haltOnFailure=True)
tor_maint_021_factory.addStep(Configure, command=["./configure", "--enable-gcc-warnings"])
-tor_maint_021_factory.addStep(Compile, command=["make"])
+tor_maint_021_factory.addStep(Compile, command=["make", "-k"])
tor_maint_021_factory.addStep(Test, command=["src/or/test", "--debug"])
tor_maint_021_msys_factory = factory.BuildFactory()
@@ -166,7 +166,7 @@
polipo_master_factory = factory.BuildFactory()
polipo_master_factory.addStep(Git, repourl="git://git.torproject.org/git/polipo",
branch="master")
-polipo_master_factory.addStep(Compile, command=["make"], env={'EXTRA_DEFINES' : '-Werror'})
+polipo_master_factory.addStep(Compile, command=["make", "-k"], env={'EXTRA_DEFINES' : '-Werror'})
# Pull the slave passwords from a separate file