From dc3585e58b427c3a8a7c01712fe54ebe118a3ce2 Mon Sep 17 00:00:00 2001 From: Wes Kocher Date: Sun, 9 Dec 2018 05:07:48 +0000 Subject: [PATCH] Bug 1423215 - Upload an uncompressed runnable-jobs.json artifact in addition to the gz version r=dustin Uploading both versions will hopefully make this easier to uplift. Once old pushes and artifacts expire, we can stop uploading the gzipped version. Differential Revision: https://phabricator.services.mozilla.com/D13601 --HG-- extra : moz-landing-system : lando --- taskcluster/taskgraph/decision.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/taskcluster/taskgraph/decision.py b/taskcluster/taskgraph/decision.py index 24ff46099ccf..a7deb93f39e0 100644 --- a/taskcluster/taskgraph/decision.py +++ b/taskcluster/taskgraph/decision.py @@ -169,8 +169,9 @@ def taskgraph_decision(options, parameters=None): full_task_json = tgg.full_task_graph.to_json() write_artifact('full-task-graph.json', full_task_json) - # write out the public/runnable-jobs.json.gz file + # write out the public/runnable-jobs.json file write_artifact('runnable-jobs.json.gz', full_task_graph_to_runnable_jobs(full_task_json)) + write_artifact('runnable-jobs.json', full_task_graph_to_runnable_jobs(full_task_json)) # this is just a test to check whether the from_json() function is working _, _ = TaskGraph.from_json(full_task_json)