This commit is contained in:
Tim Taubert 2016-08-07 09:48:08 +02:00
Родитель 848c0c3ada
Коммит 942144ee2e
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -88,6 +88,11 @@ tcc.onTaskFailed(async function (msg) {
return;
}
// Ignore tier-3 task failures.
if (parseInt(th.tier || 1, 10) == 3) {
return;
}
// Determine platform.
let collection = Object.keys(th.collection || {})[0] || "opt";
let platform = PLATFORMS[th.build.platform] || th.build.platform;