1 ##############################################################################
2 # Copyright (c) 2016 Tim Rozet (trozet@redhat.com) and others.
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
12 from jinja2 import Environment
13 from jinja2 import FileSystemLoader
17 """Render JJB output from scenarios.yaml.hidden file and jinja
23 env = Environment(loader=FileSystemLoader('./'), autoescape=True)
25 with open('scenarios.yaml.hidden') as _:
26 scenarios = yaml.safe_load(_)
28 template = env.get_template('apex.yaml.j2')
30 print("Scenarios are: ")
31 pprint.pprint(scenarios)
33 for stream in scenarios:
34 if stream == 'master':
35 gspathname['master'] = ''
36 branch[stream] = stream
38 gspathname[stream] = '/' + stream
39 branch[stream] = 'stable/' + stream
40 build_slave[stream] = 'apex-baremetal-{}'.format(stream)
42 output = template.render(scenarios=scenarios, gspathname=gspathname,
43 branch=branch, build_slave=build_slave)
45 with open('./apex.yaml', 'w') as fh:
48 if __name__ == "__main__":