blob: da62bc7ad12bf70f89bf4096720a3fbf1bcc0181 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
##############################################################################
# Copyright (c) 2016 Tim Rozet (trozet@redhat.com) and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
import pprint
import yaml
from jinja2 import Environment
from jinja2 import FileSystemLoader
gspathname = dict()
branch = dict()
env = Environment(loader=FileSystemLoader('./'), autoescape=True)
with open('scenarios.yaml.hidden') as _:
scenarios = yaml.safe_load(_)
template = env.get_template('apex.yml.j2')
print("Scenarios are: ")
pprint.pprint(scenarios)
for stream in scenarios:
if stream == 'master':
gspathname['master'] = ''
branch[stream] = stream
else:
gspathname[stream] = '/' + stream
branch[stream] = 'stable/' + stream
output = template.render(scenarios=scenarios, gspathname=gspathname,
branch=branch)
with open('./apex.yml', 'w') as fh:
fh.write(output)
|