diff --git a/zorg/buildbot/process/factory.py b/zorg/buildbot/process/factory.py --- a/zorg/buildbot/process/factory.py +++ b/zorg/buildbot/process/factory.py @@ -71,11 +71,13 @@ def addGetSourcecodeSteps(self, **kwargs): # Checkout the monorepo. + # Documentation: http://docs.buildbot.net/current/manual/configuration/buildsteps.html#git self.addStep(steps.Git( name='Checkout the source code', repourl=self.repourl_prefix + "llvm-project.git", progress=True, workdir=util.WithProperties(self.monorepo_dir), + retryFetch=True, **kwargs)) @@ -104,4 +106,5 @@ repourl=_repourl, progress=True, workdir=util.WithProperties(src_dir), + retryFetch=True, **kwargs))