Signed-off-by: Jo-Philipp Wich <jo@mein.io>
# only take place on one slave.
from buildbot.process.factory import BuildFactory
-from buildbot.steps.source import Git
+from buildbot.steps.source.git import Git
from buildbot.steps.shell import ShellCommand
from buildbot.steps.shell import SetProperty
from buildbot.steps.transfer import FileUpload
))
# check out the source
- factory.addStep(Git(repourl=repo_url, branch=repo_branch, mode='update'))
+ factory.addStep(Git(
+ repourl = repo_url,
+ branch = repo_branch,
+ mode = 'incremental',
+ method = 'clean'))
factory.addStep(ShellCommand(
name = "rmtmp",