From: dbs Date: Mon, 31 Jan 2011 04:22:23 +0000 (+0000) Subject: We're not just OpenSRF trunk, we've got other branches X-Git-Tag: osrf_rel_2_1_0-alpha1~83 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=c0831944563b91ccf7f7ceee76358a993eb40319;p=OpenSRF.git We're not just OpenSRF trunk, we've got other branches Also, drop %%BRANCH%% from the SVN baseURL and give it a default branch. git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@2158 9efc2488-bf62-4759-914b-345cdb29e865 --- diff --git a/examples/buildbot.cfg b/examples/buildbot.cfg index 83a8748..ee87c86 100644 --- a/examples/buildbot.cfg +++ b/examples/buildbot.cfg @@ -28,7 +28,7 @@ c['slavePortnum'] = XXX from buildbot.changes import svnpoller c['change_source'] = svnpoller.SVNPoller( - project='OpenSRF trunk', + project='OpenSRF', svnurl='svn://svn.open-ils.org/OpenSRF', split_file=svnpoller.split_file_branches, pollinterval=600) @@ -76,7 +76,8 @@ from buildbot.steps import python_twisted factory = BuildFactory() # check out the source factory.addStep(source.SVN( - baseURL='svn://svn.open-ils.org/OpenSRF/%%BRANCH%%', + baseURL='svn://svn.open-ils.org/OpenSRF/', + defaultBranch='trunk', mode='copy')) # bootstrap the code @@ -184,7 +185,7 @@ c['status'].append(mn) # waterfall HTML page. The 'projectURL' string will be used to provide a link # from buildbot HTML pages to your project's home page. -c['projectName'] = "OpenSRF trunk" +c['projectName'] = "OpenSRF" c['projectURL'] = "http://evergreen-ils.org/" # the 'buildbotURL' string should point to the location where the buildbot's