diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2014-03-18 11:55:06 +0100 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2014-03-18 11:55:06 +0100 |
commit | c1e9bb9e61a79a1d0c4300cc31eac7ff61107085 (patch) | |
tree | 13cf2687ac4505fa8acaf083cdaf0067c1cd5d5c /build | |
parent | 551578eb3676f67cccd8a91a582c2225bc970cac (diff) | |
download | jquery-c1e9bb9e61a79a1d0c4300cc31eac7ff61107085.tar.gz jquery-c1e9bb9e61a79a1d0c4300cc31eac7ff61107085.zip |
Build: Change the timeout for the weekly job from 4h to 1h
Diffstat (limited to 'build')
-rw-r--r-- | build/tasks/testswarm.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build/tasks/testswarm.js b/build/tasks/testswarm.js index c4839ae60..1e4e04531 100644 --- a/build/tasks/testswarm.js +++ b/build/tasks/testswarm.js @@ -38,10 +38,10 @@ module.exports = function( grunt ) { name: jobName, runs: runs, runMax: config.runMax, - browserSets: projectName === "jquery" ? - [ "popular-no-old-ie", "ios" ] : - "weekly-no-old-ie", - timeout: projectName === "jquery" ? 1000 * 60 * 30 : 1000 * 60 * 60 * 4 + browserSets: projectName === "jqueryweekly" ? + "weekly-no-old-ie" : + [ "popular-no-old-ie", "ios" ], + timeout: projectName === "jqueryweekly" ? 1000 * 60 * 60 : 1000 * 60 * 30 }, function( err, passed ) { if ( err ) { grunt.log.error( err ); |