From 8ac9d91776665bfe53be26d21747d7ef24191a70 Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Tue, 26 Jul 2016 14:02:41 -0700 Subject: [PATCH 1/3] Try using runtests-parallel for CI --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 770278d99766b..29f3682e97779 100644 --- a/package.json +++ b/package.json @@ -78,7 +78,7 @@ }, "scripts": { "pretest": "jake tests", - "test": "jake runtests", + "test": "jake runtests-parallel", "build": "npm run build:compiler && npm run build:tests", "build:compiler": "jake local", "build:tests": "jake tests", From ffeccddcf2cc730628401acf33dcb53a42f5c0d6 Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Fri, 29 Jul 2016 14:53:43 -0700 Subject: [PATCH 2/3] Put worker count setting into .travis.yml --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 478e31c439831..21331a83d8290 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,12 +7,16 @@ node_js: sudo: false +env: + - workerCount=8 + matrix: fast_finish: true include: - os: osx node_js: stable osx_image: xcode7.3 + env: workerCount=2 branches: only: From 78f943fffffe6b5231b68972300874be2cdb9013 Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Fri, 29 Jul 2016 15:14:48 -0700 Subject: [PATCH 3/3] Reduce worker count to 4 - 8 wasnt much different from 4-6 but had contention issues causing timeouts --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 21331a83d8290..cb9bf42225a8c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ node_js: sudo: false env: - - workerCount=8 + - workerCount=4 matrix: fast_finish: true