]> source.dussan.org Git - jquery-ui.git/commitdiff
grunt testswarm: Job name consistent with other jquery repos. 732/head
authorTimo Tijhof <krinklemail@gmail.com>
Sat, 29 Sep 2012 03:25:45 +0000 (05:25 +0200)
committerTimo Tijhof <krinklemail@gmail.com>
Sat, 29 Sep 2012 03:25:45 +0000 (05:25 +0200)
With hash symbol in front of link and 10-char commit hash.

build/tasks/testswarm.js

index b42f9cd612bf4095c1c773b8f398d83ab6d882f4..34c17d4f6b5c84fc1cb768ba83471425a7eaa247 100644 (file)
@@ -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 + '<a href="https://github.com/jquery/jquery-ui/commit/' + commit + '">' + commit.substr( 0, 7 ) + '</a>',
+               jobName: 'jQuery UI ' + version + '#<a href="https://github.com/jquery/jquery-ui/commit/' + commit + '">' + commit.substr( 0, 10 ) + '</a>',
                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() );
 });
 
 };