diff options
author | Will Holland <william.holland@codethink.co.uk> | 2015-09-15 14:16:36 +0100 |
---|---|---|
committer | Will Holland <william.holland@codethink.co.uk> | 2015-09-15 14:16:36 +0100 |
commit | be44412e202e0181e04d97e403f54f79591b169e (patch) | |
tree | daf875d68e72218be3c76c9a42e6065d9e322d3e /source/master.cfg | |
parent | bf0f4b517f9355043d9d77bc726e4f60e460733a (diff) | |
download | orchestration-be44412e202e0181e04d97e403f54f79591b169e.tar.gz |
Pass the deploy buildnumber to testing
Diffstat (limited to 'source/master.cfg')
-rw-r--r-- | source/master.cfg | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/master.cfg b/source/master.cfg index 3e6a8ec..168667c 100644 --- a/source/master.cfg +++ b/source/master.cfg @@ -113,7 +113,9 @@ testing_factory = BuildFactory() testing_factory.addStep(steps.Git( repourl='git://cu010-trove.codethink.com/cu010-trove/br6/buildslave-scripts.git', mode='incremental')) -testing_factory.addStep(ShellCommand(command=["sh","triggers/testing_trigger.sh"])) +system = util.Property('deploy_buildnumber',default=0) +testing_cmd = ["sh","triggers/testing_trigger.sh",deploy_buildnumber] +testing_factory.addStep(ShellCommand(command=testing_cmd)) from buildbot.config import BuilderConfig |