summaryrefslogtreecommitdiff
path: root/source/configure.py
diff options
context:
space:
mode:
Diffstat (limited to 'source/configure.py')
-rw-r--r--source/configure.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/configure.py b/source/configure.py
index c342483..fd0d4ad 100644
--- a/source/configure.py
+++ b/source/configure.py
@@ -34,15 +34,19 @@ def load_pipeline_configs():
pipelines = []
for pipeline in os.listdir(REPO_DIR):
if not pipeline.endswith('.yaml'): continue
+ print "file %s ends in .yaml" % pipeline
pipeline_path = os.path.join(REPO_DIR,pipeline)
+ print "path %s" % pipeline_path
with open(pipeline_path, 'r') as f:
config = yaml.load(f)
+ print "file loaded"
validate_config(config,
'name',
'candidate-refs',
'slave-type',
'clusters',
'steps')
+ print "file validated"
pipelines.append(config)
return pipelines