comparison maintainers_dont_log_en_in_buildbot.patch @ 56:37d5953fc236

start to update the buildbot configuration
author Louis Opter <louis@lse.epitech.net>
date Thu, 02 Feb 2012 12:26:48 +0100
parents
children
comparison
equal deleted inserted replaced
55:b2fe898b6957 56:37d5953fc236
1 # HG changeset patch
2 # Parent 1b0d553645e08fae7b919bfc162d8929aa7dbf63
3 maintainers: don't log the environment variables on buildbot (it holds credentials on DotCloud)
4
5 diff --git a/maintainers/buildbot/master/master-dotcloud.cfg b/maintainers/buildbot/master/master-dotcloud.cfg
6 --- a/maintainers/buildbot/master/master-dotcloud.cfg
7 +++ b/maintainers/buildbot/master/master-dotcloud.cfg
8 @@ -63,12 +63,12 @@
9 from buildbot.steps.shell import ShellCommand, Configure, Compile, Test
10
11 fullbuild_factory = BuildFactory()
12 -fullbuild_factory.addStep(Mercurial(repourl='https://code.google.com/p/rathaxes', method='clean', branchType='inrepo'))
13 -fullbuild_factory.addStep(ShellCommand(command=['cmake', '-E', 'make_directory', 'build'], lazylogfiles=True))
14 +fullbuild_factory.addStep(Mercurial(repourl='https://code.google.com/p/rathaxes', method='clean', branchType='inrepo', logEnviron=False))
15 +fullbuild_factory.addStep(ShellCommand(command=['cmake', '-E', 'make_directory', 'build'], lazylogfiles=True, logEnviron=False))
16 # The default is already build/ thus build/build
17 -fullbuild_factory.addStep(Configure(command=['cmake', '-DCMAKE_BUILD_TYPE=RELEASE', '..'], workdir='build/build'))
18 -fullbuild_factory.addStep(Compile(workdir='build/build'))
19 -fullbuild_factory.addStep(Test(workdir='build/build'))
20 +fullbuild_factory.addStep(Configure(command=['cmake', '-DCMAKE_BUILD_TYPE=RELEASE', '..'], workdir='build/build', logEnviron=False))
21 +fullbuild_factory.addStep(Compile(workdir='build/build', logEnviron=False))
22 +fullbuild_factory.addStep(Test(workdir='build/build', logEnviron=False))
23
24 from buildbot.config import BuilderConfig
25