author | Dustin J. Mitchell <dustin@mozilla.com> |
Sat, 17 Sep 2016 00:57:54 +0000 | |
changeset 314283 | 722dadacc2d57d2ecb1dadf7b9904802f6567183 |
parent 314282 | 9fcea68f98ef58e2e00e1c529c4ed2ca629759a3 |
child 314284 | ef3c1ce0c1fb504f971bc5da9a2a74374d5aebd0 |
push id | 30717 |
push user | philringnalda@gmail.com |
push date | Sat, 17 Sep 2016 20:38:05 +0000 |
treeherder | mozilla-central@b3aa1f62ce68 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | philor |
bugs | 1301720 |
milestone | 51.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/taskcluster/taskgraph/transforms/task.py +++ b/taskcluster/taskgraph/transforms/task.py @@ -537,19 +537,19 @@ def check_v2_routes(): with open("testing/mozharness/configs/routes.json", "rb") as f: routes_json = json.load(f) # we only deal with the 'routes' key here routes = routes_json['routes'] # we use different variables than mozharness for mh, tg in [ - ('{index}', 'index'), - ('{build_product}', '{product}'), - ('{build_name}-{build_type}', '{job-name-gecko-v2}'), - ('{year}.{month}.{day}.{pushdate}', '{pushdate_long}')]: + ('{index}', 'index'), + ('{build_product}', '{product}'), + ('{build_name}-{build_type}', '{job-name-gecko-v2}'), + ('{year}.{month}.{day}.{pushdate}', '{pushdate_long}')]: routes = [r.replace(mh, tg) for r in routes] if sorted(routes) != sorted(V2_ROUTE_TEMPLATES): raise Exception("V2_ROUTE_TEMPLATES does not match Mozharness's routes.json: " "%s vs %s" % (V2_ROUTE_TEMPLATES, routes)) check_v2_routes()