Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/builders.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-05-18 08:27:57 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-05-18 08:27:57 (GMT)
commit3e79ae29a026845e1dd827f6282fb4299f1075a0 (patch)
tree3d4b6ad1a7b8fc74b725c672d53f22bfdd53e2ca /builders.py
parenta3df9c75d311e406fab16ce82740078062fe5dc0 (diff)
Update log paths to sugar-build changes
Diffstat (limited to 'builders.py')
-rw-r--r--builders.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/builders.py b/builders.py
index e18548d..e1a556e 100644
--- a/builders.py
+++ b/builders.py
@@ -35,17 +35,18 @@ def create_factory(config, env={}, full=False, upload_docs=False):
if config.get("check_system", True):
command = ["./osbuild", "check-system", "--update", "--remove"]
+ log_path = "out/logs/check-system.log"
factory.addStep(ShellCommand(command=command,
description="checking system",
descriptionDone="check system",
warnOnFailure=True,
- logfiles={"log": "logs/check-system.log"},
+ logfiles={"log": log_path},
env=env))
factory.addStep(PullCommand(description="pulling",
descriptionDone="pull",
haltOnFailure=True,
- logfiles={"log": "logs/pull.log"},
+ logfiles={"log": "out/logs/pull.log"},
env=env))
command = ["./osbuild", "build"]
@@ -56,14 +57,14 @@ def create_factory(config, env={}, full=False, upload_docs=False):
description="building",
descriptionDone="build",
haltOnFailure=True,
- logfiles={"log": "logs/build.log"},
+ logfiles={"log": "out/logs/build.log"},
env=env))
factory.addStep(ShellCommand(command=["./osbuild", "check"],
description="checking",
descriptionDone="check",
haltOnFailure=True,
- logfiles={"log": "logs/check.log"},
+ logfiles={"log": "out/logs/check.log"},
env=env))
if upload_docs:
@@ -71,7 +72,7 @@ def create_factory(config, env={}, full=False, upload_docs=False):
description="docs",
descriptionDone="docs",
haltOnFailure=True,
- logfiles={"log": "logs/docs.log"},
+ logfiles={"log": "out/logs/docs.log"},
env=env))
docs_url = "http://shell.sugarlabs.org/~buildbot/docs/index.html"