Rev 83: Switch to the bzr-windows-installers project for.. windows installers. in file:///home/vila/buildbot/bzr/
Vincent Ladeuil
v.ladeuil+lp at free.fr
Wed Oct 28 16:01:55 GMT 2009
At file:///home/vila/buildbot/bzr/
------------------------------------------------------------
revno: 83
revision-id: v.ladeuil+lp at free.fr-20091028160155-cp83g1euhopoe1hu
parent: v.ladeuil+lp at free.fr-20091023112014-bkr87xhp273jln0w
committer: Vincent Ladeuil <v.ladeuil+lp at free.fr>
branch nick: bzr
timestamp: Wed 2009-10-28 17:01:55 +0100
message:
Switch to the bzr-windows-installers project for.. windows installers.
* master/master.cfg:
(BzrWindowsInstallerGetSource): Windows installers have their own
project.
(installer_factories): Only one build for now.
-------------- next part --------------
=== modified file 'master/master.cfg'
--- a/master/master.cfg 2009-10-16 07:57:39 +0000
+++ b/master/master.cfg 2009-10-28 16:01:55 +0000
@@ -108,7 +108,7 @@
baseURL='http://bazaar.launchpad.net/~bzr-pqm/bzr/',
defaultBranch='bzr.dev',
# baseURL='http://bazaar.launchpad.net/~vila/bzr/',
-# defaultBranch='trunk',
+# defaultBranch='for-babune',
# requires 0.7.11 or 12 forceSharedRepo=True,
# Keep room for initial checkout when needed
timeout=3600,
@@ -239,23 +239,39 @@
# itself, such that people can test say bzr.dev with the current
# release of the plugins, or the other way around.
+class BzrWindowsInstallerGetSource(source.Bzr):
+
+ def __init__(
+ self,
+ repourl=None,
+ baseURL='http://bazaar.launchpad.net/~bzr/bzr-windows-installers/',
+ defaultBranch='trunk',
+# requires 0.7.11 or 12 forceSharedRepo=True,
+ # Keep room for initial checkout when needed
+ timeout=3600,
+ **kwargs):
+ source.Bzr.__init__(self,
+ repourl=repourl, baseURL=baseURL,
+ defaultBranch=defaultBranch,
+# forceSharedRepo=forceSharedRepo,
+ timeout=timeout,
+ **kwargs
+ )
+
+
installer_factories = {}
#for bzr_target in ("release", "dev"):
for bzr_target in ("dev",):
- for plugin_target in ("plugin-release", "plugin-dev"):
+ for plugin_target in ("plugin-dev",):
f = factory.BuildFactory()
combi = '%s-%s' % (bzr_target, plugin_target)
name = 'installer-%s' % (combi,)
steps = [
- BzrGetSource(),
+ BzrWindowsInstallerGetSource(),
shell.Compile(
- command=["make", "installer-all",
- r"BZR_TARGET=%s" % bzr_target,
- r"PLUGIN_TARGET=%s" % plugin_target,
+ command=["make",
r"PYTHON=c:/Python25/python.exe",
- r"PYTHON24=c:/Python24/python.exe",
- r"PYTHON25=c:/Python25/python.exe",
- r"PYTHON26=c:/Python26/python.exe"],
+ ],
timeout=3600,
haltOnFailure=True),
# requires buildbot-0.7.10
More information about the bazaar-commits
mailing list