3 # Travis YAML config parser
5 # Copyright (c) 2016 Red Hat Inc.
8 # Fam Zheng <famz@redhat.com>
10 # This work is licensed under the terms of the GNU GPL, version 2
11 # or (at your option) any later version. See the COPYING file in
12 # the top-level directory.
19 return yaml
.load(open(fname
, "r").read())
23 return env
if isinstance(env
, list) else [env
]
24 for entry
in conf
["matrix"]["include"]:
25 yield {"env": env_to_list(entry
["env"]),
26 "compiler": entry
["compiler"]}
27 for entry
in itertools
.product(conf
["compiler"],
28 conf
["env"]["matrix"]):
29 yield {"env": env_to_list(entry
[1]),
34 sys
.stderr
.write("Usage: %s <travis-file>\n" % sys
.argv
[0])
36 conf
= load_yaml(sys
.argv
[1])
37 print "\n".join((": ${%s}" % var
for var
in conf
["env"]["global"]))
38 for config
in conf_iter(conf
):
40 print "\n".join(config
["env"])
41 print "alias cc=" + config
["compiler"]
42 print "\n".join(conf
["before_script"])
43 print "\n".join(conf
["script"])
47 if __name__
== "__main__":