Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-05-19 10:15:12 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-05-19 10:16:22 (GMT)
commitd98c171d07652f331c139544fc9323ca4a050eed (patch)
tree426b1fe14627636233c74be06d3c2f76edda4bb7
parent3b15c431e5c883f754327ed09e083085e7ee4a74 (diff)
Add a check config step
-rw-r--r--builders.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/builders.py b/builders.py
index f67d38d..95c9698 100644
--- a/builders.py
+++ b/builders.py
@@ -33,6 +33,12 @@ def create_factory(config, env={}, full=False, upload_docs=False):
codebase="sugar-build",
branch=config.get("branch", "master")))
+ factory.addStep(ShellCommand(command=["./osbuild", "check-config"],
+ description="checking config",
+ descriptionDone="check config",
+ haltOnFailure=True,
+ env=env))
+
if config.get("check_system", True):
command = ["./osbuild", "check-system", "--update", "--remove"]
log_path = "build/logs/check-system.log"