aboutsummaryrefslogtreecommitdiffstats
path: root/build/tasks/testswarm.js
diff options
context:
space:
mode:
authorMichał Gołębiowski <m.goleb@gmail.com>2015-11-12 15:30:23 +0100
committerScott González <scott.gonzalez@gmail.com>2015-11-14 06:12:55 -0500
commit15586ea752486f7db108a804622f47746e462391 (patch)
treef125c6c115e69c74e6a687b059dfcefda0c93730 /build/tasks/testswarm.js
parentcd7f8f02cf84d395bf0f06b752fe8572d4871482 (diff)
downloadjquery-ui-15586ea752486f7db108a804622f47746e462391.tar.gz
jquery-ui-15586ea752486f7db108a804622f47746e462391.zip
Build: Use jquery-git in place of jquery-compat-git
jQuery Compat is not going to get released after all; jQuery UI should be tested against jquery-git instead of jquery-compat-git. Closes gh-1646
Diffstat (limited to 'build/tasks/testswarm.js')
-rw-r--r--build/tasks/testswarm.js11
1 files changed, 9 insertions, 2 deletions
diff --git a/build/tasks/testswarm.js b/build/tasks/testswarm.js
index 3aca0e7b2..60f2800c5 100644
--- a/build/tasks/testswarm.js
+++ b/build/tasks/testswarm.js
@@ -3,7 +3,7 @@ module.exports = function( grunt ) {
"use strict";
var versions = {
- "compat-git": "compat-git",
+ "git": "git",
"1.11": "1.11.0 1.11.1 1.11.2 1.11.3",
"1.10": "1.10.0 1.10.2",
"1.9": "1.9.0 1.9.1",
@@ -38,9 +38,16 @@ function submit( commit, runs, configFile, extra, done ) {
var testName,
testswarm = require( "testswarm" ),
config = grunt.file.readJSON( configFile ).jqueryui,
+ browserSets = config.browserSets,
commitUrl = "https://github.com/jquery/jquery-ui/commit/" + commit;
if ( extra ) {
+
+ // jquery-git doesn't support IE 8.
+ if ( extra === "core git" ) {
+ browserSets = "jquery-ui-future";
+ }
+
extra = " (" + extra + ")";
}
@@ -60,7 +67,7 @@ function submit( commit, runs, configFile, extra, done ) {
name: "Commit <a href='" + commitUrl + "'>" + commit.substr( 0, 10 ) + "</a>" + extra,
runs: runs,
runMax: config.runMax,
- browserSets: config.browserSets,
+ browserSets: browserSets,
timeout: 1000 * 60 * 30
}, function( error, passed ) {
if ( error ) {