summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Holland <william.holland@codethink.co.uk>2015-09-07 14:46:00 +0100
committerWill Holland <william.holland@codethink.co.uk>2015-09-07 14:46:00 +0100
commitc945611265b18e8afcd6d7afa8b98a9f4de45a74 (patch)
treedb263d570c4761ae554b1a4c6871037b259b2a1a
parentb6f5bfd0d64e23205ecdde5afac1838f5fc41590 (diff)
downloadorchestration-c945611265b18e8afcd6d7afa8b98a9f4de45a74.tar.gz
Update trigger output
-rw-r--r--source/builders_trigger.sh2
-rw-r--r--source/firehose_trigger.sh2
-rw-r--r--source/master.cfg6
-rw-r--r--source/testing_trigger.sh2
4 files changed, 6 insertions, 6 deletions
diff --git a/source/builders_trigger.sh b/source/builders_trigger.sh
index 5d66c24..71d2ea0 100644
--- a/source/builders_trigger.sh
+++ b/source/builders_trigger.sh
@@ -1 +1 @@
-echo "This is the builder being triggered" | gedit -
+echo "[$(date "+%F %R")] Builder triggered." >> ../../../../trigger_log
diff --git a/source/firehose_trigger.sh b/source/firehose_trigger.sh
index 8e66afc..e4245ab 100644
--- a/source/firehose_trigger.sh
+++ b/source/firehose_trigger.sh
@@ -1 +1 @@
-echo "This is firehose being triggered" | gedit -
+echo "[$(date "+%F %R")] Firehose triggered." >> ../../../../trigger_log
diff --git a/source/master.cfg b/source/master.cfg
index c2713ef..5e91e60 100644
--- a/source/master.cfg
+++ b/source/master.cfg
@@ -79,15 +79,15 @@ from buildbot.steps.shell import ShellCommand
builders_factory = BuildFactory()
# run the tests (note that this will require that 'trial' is installed)
-builders_factory.addStep(ShellCommand(command=["sh","../../../source/builders_trigger.sh"]))
+builders_factory.addStep(ShellCommand(command=["sh","../../../../source/builders_trigger.sh"]))
firehose_factory = BuildFactory()
# run the tests (note that this will require that 'trial' is installed)
-firehose_factory.addStep(ShellCommand(command=["sh","../../../source/firehose_trigger.sh"]))
+firehose_factory.addStep(ShellCommand(command=["sh","../../../../source/firehose_trigger.sh"]))
testing_factory = BuildFactory()
# run the tests (note that this will require that 'trial' is installed)
-testing_factory.addStep(ShellCommand(command=["sh","../../../source/testing_trigger.sh"]))
+testing_factory.addStep(ShellCommand(command=["sh","../../../../source/testing_trigger.sh"]))
from buildbot.config import BuilderConfig
diff --git a/source/testing_trigger.sh b/source/testing_trigger.sh
index 506beda..8f06793 100644
--- a/source/testing_trigger.sh
+++ b/source/testing_trigger.sh
@@ -1 +1 @@
-echo "This is the automated testing being triggered" | gedit -
+echo "[$(date "+%F %R")] Automated testing triggered." >> ../../../../trigger_log