URL:
https://svn.lrde.epita.fr/svn/lrde-tools/trunk/buildbot/masters
ChangeLog:
2007-12-07 Alexandre Duret-Lutz <adl(a)lrde.epita.fr>
* spot_master.cfg: Disable install, dist, and upload steps. We
don't need install, dist is superfluous with distcheck, and
upload is currently failing because the script does not exist.
---
spot_master.cfg | 20 ++++++++++++++++----
1 file changed, 16 insertions(+), 4 deletions(-)
Index: trunk/buildbot/masters/spot_master.cfg
===================================================================
--- trunk/buildbot/masters/spot_master.cfg (revision 479)
+++ trunk/buildbot/masters/spot_master.cfg (revision 480)
@@ -162,24 +162,36 @@
f_spot_unix = GNUBuildSystem(project_repos='spot',
scm_step=checkout,
- bootstrap_cmd='autoreconf -vi')
+ bootstrap_cmd='autoreconf -vi',
+ install_cmd=None,
+ upload_cmd=None,
+ dist_cmd=None)
f_spot_unix_gcc3 = GNUBuildSystem(project_repos='spot',
scm_step=checkout,
bootstrap_cmd='autoreconf -vi',
extra_configure_args='CC=gcc-3.4 CXX=g++-3.4',
- install_dir='spot_gcc3')
+ install_dir='spot_gcc3',
+ install_cmd=None,
+ upload_cmd=None,
+ dist_cmd=None)
f_spot_mingw = GNUBuildSystem(project_repos='spot',
scm_step=checkout,
bootstrap_cmd='autoreconf -vi',
- extra_configure_args='--host=mingw32 --build=i686-pc-cygwin')
+ extra_configure_args='--host=mingw32 --build=i686-pc-cygwin',
+ install_cmd=None,
+ upload_cmd=None,
+ dist_cmd=None)
f_spot_vcxx = GNUBuildSystem(project_repos='spot',
scm_step=checkout,
bootstrap_cmd='autoreconf -vi',
extra_configure_args='''CC=cccl CXX=cccl LD=cccl \\
- && sed "s/^host=.*/host=\'i686-pc-msvc++8\'/" -i
config.log''')
+ && sed "s/^host=.*/host=\'i686-pc-msvc++8\'/" -i
config.log''',
+ install_cmd=None,
+ upload_cmd=None,
+ dist_cmd=None)
builder_spot_winxp_mingw = {'name': 'mingw32-gcc-3.4.5',
'slavename': 'bot-winxp-mingw',