diff --git a/roles/taskotron/buildmaster-configure/templates/ci.master.cfg.j2 b/roles/taskotron/buildmaster-configure/templates/ci.master.cfg.j2 index 275e9eb03c..ea0470e0b9 100644 --- a/roles/taskotron/buildmaster-configure/templates/ci.master.cfg.j2 +++ b/roles/taskotron/buildmaster-configure/templates/ci.master.cfg.j2 @@ -187,9 +187,9 @@ def create_test_factory(repo_name, func=True): factory.addStep(Git(repourl=Interpolate('https://bitbucket.org/tflink/%s.git' % repo_name), mode='full',method='clobber')) factory.addStep(ShellCommand(command=['doit', 'envtype=ci', 'test'], descriptionDone = ['run tests'])) - factory.addStep(ShellCommand(command=['doit', Interpolate('basedir=/srv/content/projects/%(prop:project)s'), 'envtype=ci', 'chainbuild'], descriptionDone=['Chainbuild RPMs'])) - factory.addStep(ShellCommand(command=['doit', Interpolate('basedir=/srv/content/projects/%(prop:project)s'), 'envtype=ci', 'buildtype=release', 'releasedocs'], descriptionDone=['Build Documentation'])) - factory.addStep(ShellCommand(command=['doit', Interpolate('basedir=/srv/content/projects/%(prop:project)s'), 'envtype=ci', 'buildtype=release', 'updatelatest'], descriptionDone=['Update Symlinks'])) + factory.addStep(ShellCommand(command=['doit', 'basedir=/srv/content/', 'envtype=ci', 'chainbuild'], descriptionDone=['Chainbuild RPMs'])) + factory.addStep(ShellCommand(command=['doit', 'basedir=/srv/content/', 'envtype=ci', 'buildtype=release', 'releasedocs'], descriptionDone=['Build Documentation'])) + factory.addStep(ShellCommand(command=['doit', 'basedir=/srv/content/', 'envtype=ci', 'buildtype=release', 'updatelatest'], descriptionDone=['Update Symlinks'])) return factory