Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-06-15 20:56:57 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-06-15 20:56:57 (GMT)
commit6cc65887678cf00de4b7ddd67682a464bda9e803 (patch)
tree7924af3010bcc07ca97f48ed04059a3cf9f9b4bd /scripts
parent13dca9c59da4fb811f422a9f60345e3b79dac7c9 (diff)
Set SUGAR_BUILDBOT to enable non interactive mode
Diffstat (limited to 'scripts')
-rw-r--r--scripts/buildbot/master.cfg3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/buildbot/master.cfg b/scripts/buildbot/master.cfg
index d6627c0..c3e0b22 100644
--- a/scripts/buildbot/master.cfg
+++ b/scripts/buildbot/master.cfg
@@ -59,7 +59,8 @@ from buildbot.steps.shell import Compile
factory = BuildFactory()
factory.addStep(Git(repourl="git://github.com/dnarvaez/sugar-build",
mode="copy"))
-factory.addStep(Compile(command=["make", "build"]))
+factory.addStep(Compile(command=["make", "build"],
+ env={"SUGAR_BUILDBOT": "yes"}))
from buildbot.config import BuilderConfig