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, name: jobName,
runs: runs, runs: runs,
runMax: config.runMax, runMax: config.runMax,
browserSets: projectName === "jquery" ? browserSets: projectName === "jqueryweekly" ?
[ "popular", "ios" ] : "weekly" :
"weekly", [ "popular", "ios" ],
timeout: projectName === "jquery" ? 1000 * 60 * 30 : 1000 * 60 * 60 * 4 timeout: projectName === "jqueryweekly" ? 1000 * 60 * 60 : 1000 * 60 * 30
}, function( err, passed ) { }, function( err, passed ) {
if ( err ) { if ( err ) {
grunt.log.error( err ); grunt.log.error( err );