|
Boost-Commit : |
From: troy_at_[hidden]
Date: 2008-07-03 01:21:59
Author: troy
Date: 2008-07-03 01:21:59 EDT (Thu, 03 Jul 2008)
New Revision: 47029
URL: http://svn.boost.org/trac/boost/changeset/47029
Log:
another option (for stress testing server)
Text files modified:
branches/CMake/release/tools/build/CMake/run_continuous_slave.py.in | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
Modified: branches/CMake/release/tools/build/CMake/run_continuous_slave.py.in
==============================================================================
--- branches/CMake/release/tools/build/CMake/run_continuous_slave.py.in (original)
+++ branches/CMake/release/tools/build/CMake/run_continuous_slave.py.in 2008-07-03 01:21:59 EDT (Thu, 03 Jul 2008)
@@ -20,6 +20,10 @@
action="store_true", dest="clean_every_time", default=False,
help="Clean before every build")
+parser.add_option("-k", "--keep-rebuilding",
+ action="store_true", dest="keep-rebuilding", default=False,
+ help="Rebuild even if there are no updates to svn")
+
(options, args) = parser.parse_args()
@@ -63,6 +67,7 @@
print ">>>", j.path
print "Updating."
client.update(wc_path)
+ if len(ds) or options.keep_rebuilding:
do_build(options.clean_every_time)
else:
print "No updates."
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk