From cc5dab8af024029d66b0cda2e03d9bc76fd6ff35 Mon Sep 17 00:00:00 2001 From: Will Holland Date: Thu, 1 Oct 2015 00:28:15 +0100 Subject: Add pipeline property to every step --- ciatlib/master.py | 12 ++++++++---- 1 file 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] -- cgit v1.2.1