Build: Change the timeout for the weekly job from 4h to 1h

(cherry-picked from c1e9bb9e61)
This commit is contained in:
Michał Gołębiowski 2014-03-18 11:55:06 +01:00
parent 835d64e81a
commit be565d1cdb

View File

@ -38,10 +38,10 @@ module.exports = function( grunt ) {
name: jobName,
runs: runs,
runMax: config.runMax,
browserSets: projectName === "jquery" ?
[ "popular", "ios" ] :
"weekly",
timeout: projectName === "jquery" ? 1000 * 60 * 30 : 1000 * 60 * 60 * 4
browserSets: projectName === "jqueryweekly" ?
"weekly" :
[ "popular", "ios" ],
timeout: projectName === "jqueryweekly" ? 1000 * 60 * 60 : 1000 * 60 * 30
}, function( err, passed ) {
if ( err ) {
grunt.log.error( err );