Skip to content

Commit

Permalink
Bump maxRunTime for Chains tests on Windows to 2h r=me
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Taubert committed Nov 15, 2016
1 parent b52665b commit 251b771
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions automation/taskcluster/graph/src/extend.js
Expand Up @@ -65,6 +65,11 @@ queue.map(task => {
}
}

// Windows is slow.
if (task.platform == "windows2012-64" && task.tests == "chains") {
task.maxRunTime = 7200;
}

// Enable TLS 1.3 for every task.
task.env = task.env || {};
task.env.NSS_ENABLE_TLS_1_3 = "1";
Expand Down

0 comments on commit 251b771

Please sign in to comment.