From c0ed0af6d5c40e89369c2f7b4039ae96dc630812 Mon Sep 17 00:00:00 2001 From: Tom Prince Date: Sun, 4 Jun 2017 22:09:50 -0600 Subject: [PATCH] Adjust report to handle new toolchain type. --- static/report.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/static/report.js b/static/report.js index fe7d779b8..c94ca484e 100644 --- a/static/report.js +++ b/static/report.js @@ -77,6 +77,9 @@ function begin(config, results) { function parseToolchain(tc) { if (tc["Dist"]) { return tc["Dist"]; + } else if (tc["TryBuild"]) { + let sha = tc["TryBuild"]["sha"]; + return `${sha}` } else { throw "unsupported toolchain type"; }