From 8e79398c2ae24dfdd595c6db3e8403829c621441 Mon Sep 17 00:00:00 2001 From: Paul Irish Date: Sat, 27 May 2017 16:42:56 -0700 Subject: [PATCH 1/4] hwo about this. --- .appveyor.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 3773a697f881..be9669b1cb45 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -26,8 +26,10 @@ test_script: - node --version - npm --version - yarn --version - - yarn lint - - yarn unit + - which yarn + - npm install yarn -g + - which yarn + - yarn install-all - yarn smoke - yarn smokehouse From 58384ba2effd7de5b982d9bd4ed4a15bf83247b0 Mon Sep 17 00:00:00 2001 From: Paul Irish Date: Sat, 27 May 2017 16:50:07 -0700 Subject: [PATCH 2/4] move yarn install to right location. --- .appveyor.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index be9669b1cb45..d73ab4acdd49 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -3,6 +3,7 @@ clone_depth: 10 version: "{build}" environment: + fast_finish: true matrix: - nodejs_version: "6.9.1" platform: x86 @@ -13,6 +14,7 @@ build: off install: - ps: Install-Product node $env:nodejs_version $env:platform + - npm install yarn -g - yarn - yarn install-all @@ -27,9 +29,8 @@ test_script: - npm --version - yarn --version - which yarn - - npm install yarn -g - - which yarn - - yarn install-all + - yarn lint + - yarn unit - yarn smoke - yarn smokehouse From 0cc152893c2e842ab2cd8efd85b846a88e93765a Mon Sep 17 00:00:00 2001 From: Paul Irish Date: Sat, 27 May 2017 17:02:49 -0700 Subject: [PATCH 3/4] only test node 6 on windows, as we only can do 1 concurrent job --- .appveyor.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index d73ab4acdd49..33031a260179 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -5,9 +5,7 @@ version: "{build}" environment: fast_finish: true matrix: - - nodejs_version: "6.9.1" - platform: x86 - - nodejs_version: "7" + - nodejs_version: "6" platform: x86 build: off From bb7ccf7a88260b98ad8eb519690d81ca4d6bb378 Mon Sep 17 00:00:00 2001 From: Paul Irish Date: Mon, 29 May 2017 22:26:06 -0700 Subject: [PATCH 4/4] add comment about node7 being excluded. --- .appveyor.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index 33031a260179..512aa1a4b2a0 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -7,6 +7,10 @@ environment: matrix: - nodejs_version: "6" platform: x86 + # node 7 is skipped, as appveyor only allows 1 concurrent job + # and we want appveyor finishing ASAP. see #2382 + # - nodejs_version: "7" + # platform: x86 build: off