From eba1f3e70f6d050e3cec3705546779eadaea69f7 Mon Sep 17 00:00:00 2001 From: Evgenii Popov Date: Fri, 1 May 2020 05:25:12 +0300 Subject: [PATCH 1/2] Repaired integration with appveyor Meteor 1.8.x still uses nodejs v.8, so we should too. Btw, Meteor never used nodejs v.10, they jumped straight to 12 with the release of 1.9 --- appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index ab97d6e8..38e9368e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,10 +6,10 @@ skip_tags: true environment: matrix: - - nodejs_version: "10" + - nodejs_version: "8" test: "normal" platform: x64 - - nodejs_version: "10" + - nodejs_version: "8" test: "integration" platform: x64 @@ -30,7 +30,7 @@ install: - ps: >- if ($env:test -eq "integration") { if ((Get-Command "meteor" -ErrorAction SilentlyContinue) -eq $null) { - choco install meteor --params "'/RELEASE:1.8.1'" + choco install meteor --params "'/RELEASE:1.8.2'" } } - ps: refreshenv From 02109eab394fb6cd3e5ed92b44de21eadc55914c Mon Sep 17 00:00:00 2001 From: Evgenii Popov Date: Fri, 1 May 2020 05:52:23 +0300 Subject: [PATCH 2/2] Update clear.js Looks like travis appveyor installs nodejs in same directory with projects and node is cleaned at some by this line. What for actually we need to clean everything here? --- tests/helpers/clear.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/helpers/clear.js b/tests/helpers/clear.js index bf06b00a..447df80a 100644 --- a/tests/helpers/clear.js +++ b/tests/helpers/clear.js @@ -1,5 +1,5 @@ import shell from 'shelljs'; import paths from './paths'; -shell.rm('-rf', paths.testsTmpPath); +//shell.rm('-rf', paths.testsTmpPath);