From 1b32c98f14766d3e956c52d6b803b19e5126c893 Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Fri, 28 Dec 2012 16:58:07 +0000 Subject: Move system checking to the build module --- diff --git a/commands/build b/commands/build index 38cae6b..da62f82 100755 --- a/commands/build +++ b/commands/build @@ -5,7 +5,6 @@ import sys import common -from devbot import system from devbot import build parser = argparse.ArgumentParser() @@ -15,9 +14,6 @@ args = parser.parse_args() common.setup(log_name="build") -if not system.check(skip_if_unchanged=True): - sys.exit(1) - if args.module: success = build.build_one(args.module) else: diff --git a/devbot/build.py b/devbot/build.py index 6380c6e..95652b5 100644 --- a/devbot/build.py +++ b/devbot/build.py @@ -12,6 +12,7 @@ from devbot import state from devbot import utils from devbot import release from devbot import git +from devbot import system _builders = {} _distributors = {} @@ -57,7 +58,11 @@ def build(full=False): state.full_build_touch() - pull(lazy=True) + if not system.check(lazy=True): + return False + + if not pull(lazy=True): + return False to_build = [] for module in config.load_modules(): diff --git a/devbot/system.py b/devbot/system.py index 3cf409e..cefca1c 100644 --- a/devbot/system.py +++ b/devbot/system.py @@ -11,8 +11,8 @@ _checkers = {} def check(remove=False, update=False, test=False, interactive=True, - skip_if_unchanged=False): - if skip_if_unchanged: + lazy=False): + if lazy: if state.system_check_is_unchanged(): return True -- cgit v0.9.1