in project_future.py [0:0]
def build(self, stdout=sys.stdout):
action_result = ActionResult(Result.PASS, "")
try:
if 'incremental' in self.project:
for vers in self.project['incremental']:
incr = self.project['incremental'][vers]
if 'limit' in incr and self.excluded_by_limit(incr['limit']):
continue
ident = "%s-incr-%s" % (self.project['path'], vers)
action_result = self.build_incremental(ident,
incr['commits'],
stdout=stdout)
except EarlyExit as error:
action_result = error.value
return action_result