summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Holland <william.holland@codethink.co.uk>2015-10-01 00:28:15 +0100
committerWill Holland <william.holland@codethink.co.uk>2015-10-01 00:28:15 +0100
commitcc5dab8af024029d66b0cda2e03d9bc76fd6ff35 (patch)
tree38d7864389a64537a25d020ff50a37813f40af9b
parent1898999165d7f28d309f132d028f5b0f725ec592 (diff)
downloadciatlib-cc5dab8af024029d66b0cda2e03d9bc76fd6ff35.tar.gz
Add pipeline property to every step
-rw-r--r--ciatlib/master.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/ciatlib/master.py b/ciatlib/master.py
index e774b4d..6bc0875 100644
--- a/ciatlib/master.py
+++ b/ciatlib/master.py
@@ -26,7 +26,8 @@ Build = Step(
properties = [
("ref","cu010-trove/br6/firehose-test-1"),
("sha","HEAD"),
- ("system",'genivi-demo-platform-x86_64-generic.morph')],
+ ("system",'genivi-demo-platform-x86_64-generic.morph'),
+ ("pipeline","no pipeline given")],
timeout = 7200,
get_definitions = True)
Deploy = Step(
@@ -37,7 +38,8 @@ Deploy = Step(
('buildnumber',0),
('buildslave_scripts_sha','no buildslave-scripts SHA given'),
('definitions_sha','no definitions SHA given'),
- ('testing_sha','no testing SHA given')],
+ ('testing_sha','no testing SHA given'),
+ ("pipeline","no pipeline given")],
timeout = 1800,
get_definitions = True)
Test = Step(
@@ -47,7 +49,8 @@ Test = Step(
('artefact','no artefact given'),
('testing_sha','no testing SHA given'),
('buildslave_scripts_sha','no buildslave-scripts SHA given'),
- ('definitions_sha','no definitions SHA given')])
+ ('definitions_sha','no definitions SHA given'),
+ ("pipeline","no pipeline given")])
Publish = Step(
name = 'Publish',
trigger = 'publish_trigger.sh',
@@ -55,7 +58,8 @@ Publish = Step(
('artefact','no artefact given'),
('testing_sha','no testing SHA given'),
('buildslave_scripts_sha','no buildslave-scripts SHA given'),
- ('definitions_sha','no definitions SHA given')])
+ ('definitions_sha','no definitions SHA given'),
+ ("pipeline","no pipeline given")])
Steps = [Build,Deploy,Test,Publish]