Skip to content

Commit cbcdb51

Browse files
committed
Limit Travis builds to 1 at a time
Speed isn't crucial here
1 parent ef1d641 commit cbcdb51

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

grunt/karma.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@ module.exports = function (grunt) {
55

66
// Limit to 3 for a FOSS account
77
sauceLaunchers = {
8-
/*
98
sl_win7_chrome: {
109
base: 'SauceLabs',
1110
browserName: 'chrome',
1211
platform: 'Windows 7'
1312
},
14-
*/
1513
sl_win7_firefox: {
1614
base: 'SauceLabs',
1715
browserName: 'firefox',
@@ -22,7 +20,6 @@ module.exports = function (grunt) {
2220
browserName: 'iphone',
2321
platform: 'OS X 10.9'
2422
},
25-
/*
2623
sl_win81_ie11: {
2724
base: 'SauceLabs',
2825
browserName: 'internet explorer',
@@ -41,7 +38,6 @@ module.exports = function (grunt) {
4138
platform: 'Windows 7',
4239
version: '9'
4340
},
44-
*/
4541
sl_winxp_ie8: {
4642
base: 'SauceLabs',
4743
browserName: 'internet explorer',
@@ -70,6 +66,7 @@ module.exports = function (grunt) {
7066
};
7167

7268
if (process.env.TRAVIS) {
69+
sauceConfig.concurrency = 1;
7370
sauceConfig.sauceLabs.build = 'Travis #' + process.env.TRAVIS_BUILD_NUMBER + ' (' + process.env.TRAVIS_BUILD_ID + ')';
7471
sauceConfig.sauceLabs.startConnect = false; // Started via Travis instead
7572
sauceConfig.sauceLabs.tunnelIdentifier = process.env.TRAVIS_JOB_NUMBER;

0 commit comments

Comments
 (0)