Remove functest-parser
[releng.git] / jjb / apex / apex-jjb-renderer.py
1 ##############################################################################
2 # Copyright (c) 2016 Tim Rozet (trozet@redhat.com) and others.
3 #
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 ##############################################################################
9
10 import pprint
11 import yaml
12 from jinja2 import Environment
13 from jinja2 import FileSystemLoader
14
15
16 def render_jjb():
17     """Render JJB output from scenarios.yaml.hidden file and jinja
18     template"""
19
20     gspathname = dict()
21     branch = dict()
22     build_slave = dict()
23     env = Environment(loader=FileSystemLoader('./'), autoescape=True)
24
25     with open('scenarios.yaml.hidden') as _:
26         scenarios = yaml.safe_load(_)
27
28     template = env.get_template('apex.yaml.j2')
29
30     print("Scenarios are: ")
31     pprint.pprint(scenarios)
32
33     for stream in scenarios:
34         if stream == 'master':
35             gspathname['master'] = ''
36             branch[stream] = stream
37         else:
38             gspathname[stream] = '/' + stream
39             branch[stream] = 'stable/' + stream
40         build_slave[stream] = 'apex-baremetal-{}'.format(stream)
41
42     output = template.render(scenarios=scenarios, gspathname=gspathname,
43                              branch=branch, build_slave=build_slave)
44
45     with open('./apex.yaml', 'w') as fh:
46         fh.write(output)
47
48 if __name__ == "__main__":
49     render_jjb()