From b579df0f0926bd208b943a14f2ad1441fc44b59f Mon Sep 17 00:00:00 2001 From: Jörn Zaefferer Date: Mon, 30 Apr 2012 15:14:33 +0200 Subject: Grunt: Read authToken from a config json file. Will be stored on Jenkins machine, include tokens for all projects --- grunt.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/grunt.js b/grunt.js index 7e13bec4a..b3bde622f 100644 --- a/grunt.js +++ b/grunt.js @@ -335,11 +335,12 @@ grunt.initConfig({ })() }); -grunt.registerTask( "testswarm", function( commit, authToken ) { +grunt.registerTask( "testswarm", function( commit, configFile ) { var test, testswarm = require( "testswarm" ), testBase = "http://swarm.jquery.org/git/jquery-ui/" + commit + "/tests/unit/", testUrls = [], + config = grunt.file.readJSON( configFile ); tests = { "Accordion": "accordion/accordion.html", "Accordion_deprecated": "accordion/accordion_deprecated.html", @@ -374,7 +375,7 @@ grunt.registerTask( "testswarm", function( commit, authToken ) { done: this.async() }, { authUsername: "jqueryui", - authToken: authToken, + authToken: config.jqueryui.authToken, jobName: 'jQuery UI commit #' + commit + '', runMax: 4, "runNames[]": Object.keys(tests), -- cgit v1.2.3