From b61744cc24d2935506b2589d88640b9e7abbc93a Mon Sep 17 00:00:00 2001 From: Tim Flink Date: Mon, 11 Jan 2016 17:51:07 +0000 Subject: [PATCH] fixing syntax error in qa-stg buildmaster --- .../buildmaster-configure/templates/ci.master.cfg.j2 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/taskotron/buildmaster-configure/templates/ci.master.cfg.j2 b/roles/taskotron/buildmaster-configure/templates/ci.master.cfg.j2 index b892ef74a5..b60ebccf22 100644 --- a/roles/taskotron/buildmaster-configure/templates/ci.master.cfg.j2 +++ b/roles/taskotron/buildmaster-configure/templates/ci.master.cfg.j2 @@ -194,10 +194,10 @@ def create_test_factory(repo_name, func=True): mode='full',method='clobber')) factory.addStep(ShellCommand(command=['virtualenv', '--system-site-packages', 'env'])) factory.addStep(ShellCommand(command=['bash', '-c', 'source env/bin/activate; pip install -r requirements.txt'])) - factory.addStep(ShellCommand(command=['doit', 'test']) - factory.addStep(ShellCommand(command=['doit', Interpolate('basedir=/srv/static/%(prop:Project)s'), 'chainbuild']) - factory.addStep(ShellCommand(command=['doit', Interpolate('basedir=/srv/static/%(prop:Project)s'), 'buildtype=release', 'releasedocs']) - factory.addStep(ShellCommand(command=['doit', Interpolate('basedir=/srv/static/%(prop:Project)s'), 'buildtype=release', 'updatelatest']) + factory.addStep(ShellCommand(command=['doit', 'test'])) + factory.addStep(ShellCommand(command=['doit', Interpolate('basedir=/srv/static/%(prop:Project)s'), 'chainbuild'])) + factory.addStep(ShellCommand(command=['doit', Interpolate('basedir=/srv/static/%(prop:Project)s'), 'buildtype=release', 'releasedocs'])) + factory.addStep(ShellCommand(command=['doit', Interpolate('basedir=/srv/static/%(prop:Project)s'), 'buildtype=release', 'updatelatest'])) return factory