Rev 54: Allows Force build to work on branches other than trunk. in file:///home/vila/buildbot/bzr/
Vincent Ladeuil
v.ladeuil+lp at free.fr
Mon Aug 17 09:21:05 BST 2009
At file:///home/vila/buildbot/bzr/
------------------------------------------------------------
revno: 54
revision-id: v.ladeuil+lp at free.fr-20090817082105-ruezwb42pbec3xz8
parent: v.ladeuil+lp at free.fr-20090814150336-0c5skkan5uziwehi
committer: Vincent Ladeuil <v.ladeuil+lp at free.fr>
branch nick: bzr
timestamp: Mon 2009-08-17 10:21:05 +0200
message:
Allows Force build to work on branches other than trunk.
* master/master.cfg:
(bzr_base_URL): buildbot put too much constraints on branch name,
so we force user/project into the baze URL to be '~bzr/bzr/' so
that we can force builds on some other branch.
-------------- next part --------------
=== modified file 'master/master.cfg'
--- a/master/master.cfg 2009-08-14 15:03:36 +0000
+++ b/master/master.cfg 2009-08-17 08:21:05 +0000
@@ -132,12 +132,12 @@
]
-bzr_base_URL = "http://bazaar.launchpad.net/"
+bzr_base_URL = "http://bazaar.launchpad.net/~bzr/bzr/"
tests_factory = factory.BuildFactory()
tests_factory.addStep(
- source.Bzr(repourl=bzr_base_URL + '~bzr/bzr/trunk/',
+ source.Bzr(repourl=bzr_base_URL + 'trunk',
timeout=3600, # Keep room for initial checkout when needed
))
tests_factory.addStep(BzrBuildExtensions())
@@ -179,7 +179,7 @@
combi = '%s-%s' % (bzr_target, plugin_target)
name = 'installer-%s' % (combi,)
steps = [
- source.Bzr(repourl=bzr_base_URL + '~bzr/bzr/trunk/',
+ source.Bzr(repourl=bzr_base_URL + 'trunk',
mode="update", alwaysUseLatest=True,
timeout=3600,
),
More information about the bazaar-commits
mailing list