|
Boost-Commit : |
From: troy_at_[hidden]
Date: 2007-06-15 10:51:15
Author: troy
Date: 2007-06-15 10:51:14 EDT (Fri, 15 Jun 2007)
New Revision: 7060
URL: http://svn.boost.org/trac/boost/changeset/7060
Log:
Cleanup unused directories, tweak scripts.
Removed:
sandbox-branches/boost-cmake/dart-client/continuous/
sandbox-branches/boost-cmake/dart-client/nightly/
Text files modified:
sandbox-branches/boost-cmake/dart-client/client.py | 4 +---
sandbox-branches/boost-cmake/dart-client/conf.py | 6 ++++--
2 files changed, 5 insertions(+), 5 deletions(-)
Modified: sandbox-branches/boost-cmake/dart-client/client.py
==============================================================================
--- sandbox-branches/boost-cmake/dart-client/client.py (original)
+++ sandbox-branches/boost-cmake/dart-client/client.py 2007-06-15 10:51:14 EDT (Fri, 15 Jun 2007)
@@ -5,7 +5,6 @@
import os.path
import time
from datetime import datetime, timedelta
-from termcolors import *
class Build:
def __init__(self, id_, build_variant_, ctest_variant_):
@@ -40,7 +39,6 @@
for bv in build_variants:
for cv in ctest_variants:
builds.append(Build(id, bv, cv))
- print "next build is: " + str(nextbuild(builds))
return builds
def print_error(msg, cmd):
@@ -62,13 +60,13 @@
builds = initbuilds()
for id, url in urls.items():
srcdir = os.path.join(topdir,prefix,id,"src")
- print "Checking out " + id
try:
os.mkdir(srcdir)
except:
print "Directory %s exists, not creating." % id
try:
+ print "Checking out " + id
client.checkout(url, srcdir)
except pysvn.ClientError, e:
print "Error:\n" + str(e)
Modified: sandbox-branches/boost-cmake/dart-client/conf.py
==============================================================================
--- sandbox-branches/boost-cmake/dart-client/conf.py (original)
+++ sandbox-branches/boost-cmake/dart-client/conf.py 2007-06-15 10:51:14 EDT (Fri, 15 Jun 2007)
@@ -1,6 +1,8 @@
prefix = 'prefix'
-urls = { 'boost_1_34_0' : 'http://svn.resophonic.com/pub/ctest-tiny' }
+boost_svn = 'http://svn.boost.org/svn/boost/sandbox-branches/boost-cmake/boost_1_34_0'
+test_svn = 'http://svn.resophonic.com/pub/ctest-tiny'
+urls = { 'boost_1_34_0' : boost_svn }
build_variants = {
'debug' : ['-DBUILD_TESTING:BOOL=ON', '-DBUILD_RELEASE:BOOL=OFF', '-DBUILD_DEBUG:BOOL=ON'],
@@ -27,7 +29,7 @@
ctest_variants = {
'continuous' : (['-D', 'Continuous'], continuous_dt),
- 'nightly' : (['-D', 'Nightly'], minutely_dt)
+ 'nightly' : (['-D', 'Nightly'], nightly_dt)
}
ctest = "ctest"
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