From: Timo Tijhof Date: Sat, 29 Sep 2012 03:25:45 +0000 (+0200) Subject: grunt testswarm: Job name consistent with other jquery repos. X-Git-Tag: 1.9.0~19 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F732%2Fhead;p=jquery-ui.git grunt testswarm: Job name consistent with other jquery repos. With hash symbol in front of link and 10-char commit hash. --- diff --git a/build/tasks/testswarm.js b/build/tasks/testswarm.js index b42f9cd61..34c17d4f6 100644 --- a/build/tasks/testswarm.js +++ b/build/tasks/testswarm.js @@ -42,6 +42,7 @@ function submit( commit, tests, configFile, version, done ) { for ( test in tests ) { testUrls.push( testBase + tests[ test ] ); } + version = version ? ( version + " " ) : ""; testswarm({ url: config.swarmUrl, pollInterval: 10000, @@ -50,7 +51,7 @@ function submit( commit, tests, configFile, version, done ) { }, { authUsername: config.authUsername, authToken: config.authToken, - jobName: 'jQuery UI ' + version + '' + commit.substr( 0, 7 ) + '', + jobName: 'jQuery UI ' + version + '#' + commit.substr( 0, 10 ) + '', runMax: config.runMax, "runNames[]": Object.keys(tests), "runUrls[]": testUrls, @@ -74,7 +75,7 @@ grunt.registerTask( "testswarm-multi-jquery", function( commit, configFile, mino allTests[ test + "-" + version ] = tests[ test ] + "?nojshint=true&jquery=" + version; } }); - submit( commit, allTests, configFile, minor + " core ", this.async() ); + submit( commit, allTests, configFile, minor + " core", this.async() ); }); };